Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 835 Bytes

File metadata and controls

30 lines (21 loc) · 835 Bytes

UserList

A list of users.

Properties

Name Type Description Notes
users List[User]

Example

from opal_security.models.user_list import UserList

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

# convert the object into a dict
user_list_dict = user_list_instance.to_dict()
# create an instance of UserList from a dict
user_list_from_dict = UserList.from_dict(user_list_dict)

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