Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 790 Bytes

File metadata and controls

28 lines (19 loc) · 790 Bytes

SetExpire

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.set_expire import SetExpire

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

# convert the object into a dict
set_expire_dict = set_expire_instance.to_dict()
# create an instance of SetExpire from a dict
set_expire_from_dict = SetExpire.from_dict(set_expire_dict)

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