The model keep-alive duration
| Name | Type | Description | Notes |
|---|
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)