Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 814 Bytes

File metadata and controls

29 lines (20 loc) · 814 Bytes

KeepAlive

The model keep-alive duration

Properties

Name Type Description Notes

Example

from cms_client.models.keep_alive import KeepAlive

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

# convert the object into a dict
keep_alive_dict = keep_alive_instance.to_dict()
# create an instance of KeepAlive from a dict
keep_alive_from_dict = KeepAlive.from_dict(keep_alive_dict)

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