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