Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 926 Bytes

File metadata and controls

28 lines (19 loc) · 926 Bytes

ServiceGroupBackend

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.service_group_backend import ServiceGroupBackend

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

# convert the object into a dict
service_group_backend_dict = service_group_backend_instance.to_dict()
# create an instance of ServiceGroupBackend from a dict
service_group_backend_from_dict = ServiceGroupBackend.from_dict(service_group_backend_dict)

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