Name | Type | Description | Notes |
---|
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)