UpdateCollectionExpiryDateRequest
Properties
Name |
Type |
Description |
Notes |
---|---|---|---|
expiry_date |
date |
The expiry date. |
|
timezone |
str |
Optional timezone to associate with the expiry date (with IANA timezone support). |
[optional] |
Example
from h2ogpte.rest_async.models.update_collection_expiry_date_request import UpdateCollectionExpiryDateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateCollectionExpiryDateRequest from a JSON string
update_collection_expiry_date_request_instance = UpdateCollectionExpiryDateRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateCollectionExpiryDateRequest.to_json())
# convert the object into a dict
update_collection_expiry_date_request_dict = update_collection_expiry_date_request_instance.to_dict()
# create an instance of UpdateCollectionExpiryDateRequest from a dict
update_collection_expiry_date_request_from_dict = UpdateCollectionExpiryDateRequest.from_dict(update_collection_expiry_date_request_dict)