Skip to content

Latest commit

 

History

History
53 lines (44 loc) · 6.03 KB

File metadata and controls

53 lines (44 loc) · 6.03 KB

InlineResponse200529ResultData

Properties

Name Type Description Notes
alternate_email str An alternate email address for the account's user. [optional]
avatar_url str The user's account profile photo. The URL must point to an image file. [optional]
can_delete int Whether the cPanel account user can delete the account. * `1` - Can delete. * `0` - Cannot delete. [optional]
can_set_password int Whether the cPanel account user can change the account's password. * `1` - Can change password. * `0` - Cannot change password. Note: The function returns `0` for accounts that inherit their password from the cPanel account. [optional]
can_set_quota int Whether the cPanel account user can change the account's disk usage quota. * `1` - Can change quota. * `0` - Cannot change quota. [optional]
dismissed int Whether the cPanel account user dismissed the merge prompt for the service account. * `1` - Dismissed prompt. * `0` - Did not dismiss prompt. Note: Only service accounts return this value. [optional]
dismissed_merge_candidates List[object] An array of objects that represent the service accounts that the user dismissed the merge prompt for. This array will always return empty. Note: We reserved this return for future use. [optional]
domain str The account user's associated domain. [optional]
full_username str The account's username and domain name, separated by the `@` character. [optional]
guid str The account unique identifier. [optional]
has_expired_invite int Whether the Subaccount owns an expired invitation. * `1` - Owns an expired invitation. * `0` - Does not own an expired invitation. [optional]
has_invite int Whether the Subaccount owns an active invitation. * `1` - Owns an invitation. * `0` - Does not own an invitation. [optional]
has_siblings int Whether the service account shares a `full_username` value with another service account. * `1` - Shares. * `0` - Does not share. [optional]
invite_expiration int The time at which the new Subaccount invitation will expire, given as a valid Unix epoch time or null. If the account does not own an active invitation, this value returns `null`. [optional]
issues List[InlineResponse200529ResultDataIssues] Information about any issues or problems with the account. [optional]
merge_candidates List[InlineResponse200529ResultDataMergeCandidates] The service accounts that the system could merge for this account. Note: You can find descriptions for this array's returns within this table. [optional]
parent_type str The type of account that could own the service account. * `sub` - An account. * `hypothetical` - A hypothetical account does not yet exist, but that the user could create as part of a merge. * `null` - Not a merge candidate. [optional]
phone_number str The account user's phone number. * A valid phone number that conforms to ITU-T's E.164-recommended standard for the representation of telephone numbers. [optional]
real_name str The name of the account's user. * A first name, a last name, or a first name and last name. * An empty string. [optional]
services InlineResponse200529ResultDataServices [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]
sub_account_exists int Whether an account exists with the same username. * `1` - Exists. * `0` - Does not exist. * `null` - The account is not a service account. [optional]
synced_password int Whether the user has synchronized the passwords for each of the account's service accounts. * `1` - Synchronized. * `0` - Not synchronized. * `null` - The account is not a Subaccount [optional]
type str The type of account. * `hypothetical` - A hypothetical account that does not exist, but that the user could create as part of a merge. * `service` - A service account. [optional]
username str The account username. The username must meet the account name limitations. * Characters - `a-z`, `A-Z`, `0-9`, dot (`.`), hyphen (`-`), underscore (`_`) Note:: This value does not include the domain name. [optional]

Example

from clientapi_cpanel.models.inline_response200529_result_data import InlineResponse200529ResultData

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

# convert the object into a dict
inline_response200529_result_data_dict = inline_response200529_result_data_instance.to_dict()
# create an instance of InlineResponse200529ResultData from a dict
inline_response200529_result_data_from_dict = InlineResponse200529ResultData.from_dict(inline_response200529_result_data_dict)

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