Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.49 KB

File metadata and controls

33 lines (24 loc) · 1.49 KB

ServiceAccountServices

Information about the subaccount's access to email, FTP, and Web Disk.

Properties

Name Type Description Notes
email ServiceAccountServicesEmail [optional]
ftp ServiceAccountServicesFtp [optional]
special int Whether the account is a system-created special account that the user cannot remove. * `1` - A special account. * `0` - Not a special account. [optional]
webdisk ServiceAccountServicesWebdisk [optional]

Example

from clientapi_cpanel.models.service_account_services import ServiceAccountServices

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

# convert the object into a dict
service_account_services_dict = service_account_services_instance.to_dict()
# create an instance of ServiceAccountServices from a dict
service_account_services_from_dict = ServiceAccountServices.from_dict(service_account_services_dict)

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