Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 882 Bytes

File metadata and controls

31 lines (22 loc) · 882 Bytes

Services

Properties

Name Type Description Notes
email str [optional]
ftp int [optional]
webdisk str [optional]

Example

from clientapi_cpanel.models.services import Services

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

# convert the object into a dict
services_dict = services_instance.to_dict()
# create an instance of Services from a dict
services_from_dict = Services.from_dict(services_dict)

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