Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

InlineResponse200459ResultDataRole.md

File metadata and controls

31 lines (22 loc) · 1.28 KB

InlineResponse200459ResultDataRole

Information about the user that owns the project.

Properties

Name Type Description Notes
id int The user's role ID number. [optional]
name str The user's role title. [optional]

Example

from clientapi_cpanel.models.inline_response200459_result_data_role import InlineResponse200459ResultDataRole

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

# convert the object into a dict
inline_response200459_result_data_role_dict = inline_response200459_result_data_role_instance.to_dict()
# create an instance of InlineResponse200459ResultDataRole from a dict
inline_response200459_result_data_role_from_dict = InlineResponse200459ResultDataRole.from_dict(inline_response200459_result_data_role_dict)

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