Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.74 KB

File metadata and controls

33 lines (24 loc) · 1.74 KB

InlineResponse200532ResultServices

An object containing information about the subaccount's access to email, FTP, and Web Disk.

Properties

Name Type Description Notes
email InlineResponse200532ResultServicesEmail [optional]
ftp InlineResponse200532ResultServicesFtp [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 InlineResponse200532ResultServicesWebdisk [optional]

Example

from clientapi_cpanel.models.inline_response200532_result_services import InlineResponse200532ResultServices

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

# convert the object into a dict
inline_response200532_result_services_dict = inline_response200532_result_services_instance.to_dict()
# create an instance of InlineResponse200532ResultServices from a dict
inline_response200532_result_services_from_dict = InlineResponse200532ResultServices.from_dict(inline_response200532_result_services_dict)

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