Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 803 Bytes

ExpireDate.md

File metadata and controls

28 lines (19 loc) · 803 Bytes

ExpireDate

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.expire_date import ExpireDate

# TODO update the JSON string below
json = "{}"
# create an instance of ExpireDate from a JSON string
expire_date_instance = ExpireDate.from_json(json)
# print the JSON string representation of the object
print(ExpireDate.to_json())

# convert the object into a dict
expire_date_dict = expire_date_instance.to_dict()
# create an instance of ExpireDate from a dict
expire_date_from_dict = ExpireDate.from_dict(expire_date_dict)

[Back to Model list] [Back to API list] [Back to README]