Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.18 KB

GetRoleById200ResponseDataInner.md

File metadata and controls

29 lines (21 loc) · 1.18 KB

GetRoleById200ResponseDataInner

Properties

Name Type Description Notes
id int role's unique ID in Onelogin [optional]
name str Role name [optional]

Example

from onelogin.models.get_role_by_id200_response_data_inner import GetRoleById200ResponseDataInner

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

# convert the object into a dict
get_role_by_id200_response_data_inner_dict = get_role_by_id200_response_data_inner_instance.to_dict()
# create an instance of GetRoleById200ResponseDataInner from a dict
get_role_by_id200_response_data_inner_form_dict = get_role_by_id200_response_data_inner.from_dict(get_role_by_id200_response_data_inner_dict)

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