Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

RoleAssignedUsers

Properties

Name Type Description Notes
value List[RoleAssignedUser] [optional]
links LinksNext [optional]

Example

from okta.models.role_assigned_users import RoleAssignedUsers

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

# convert the object into a dict
role_assigned_users_dict = role_assigned_users_instance.to_dict()
# create an instance of RoleAssignedUsers from a dict
role_assigned_users_from_dict = RoleAssignedUsers.from_dict(role_assigned_users_dict)

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