Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.49 KB

ListRoles200ResponseInner.md

File metadata and controls

38 lines (29 loc) · 1.49 KB

ListRoles200ResponseInner

Properties

Name Type Description Notes
tenant_id str
id str
name str
description str
type str
is_default bool
users_count float
featured_users List[ListRoles200ResponseInnerFeaturedUsersInner]
applications_count float
featured_applications List[ListRoles200ResponseInnerFeaturedApplicationsInner]

Example

from py_logto.models.list_roles200_response_inner import ListRoles200ResponseInner

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

# convert the object into a dict
list_roles200_response_inner_dict = list_roles200_response_inner_instance.to_dict()
# create an instance of ListRoles200ResponseInner from a dict
list_roles200_response_inner_from_dict = ListRoles200ResponseInner.from_dict(list_roles200_response_inner_dict)

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