Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.67 KB

InlineResponse200567ResultDataAdmins.md

File metadata and controls

34 lines (25 loc) · 1.67 KB

InlineResponse200567ResultDataAdmins

Properties

Name Type Description Notes
id int The user's automatically generated identifier. [optional]
display_name str The user's display name. [optional]
user_email str The user's email address. [optional]
user_login str The user's login name. [optional]
user_nicename str The user's simplified username, which you can use as an HTML ID or similar. [optional]
user_status int The user's verified status. * `1` — Verified. * `0` — Unverified. [optional]

Example

from clientapi_cpanel.models.inline_response200567_result_data_admins import InlineResponse200567ResultDataAdmins

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

# convert the object into a dict
inline_response200567_result_data_admins_dict = inline_response200567_result_data_admins_instance.to_dict()
# create an instance of InlineResponse200567ResultDataAdmins from a dict
inline_response200567_result_data_admins_from_dict = InlineResponse200567ResultDataAdmins.from_dict(inline_response200567_result_data_admins_dict)

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