Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 862 Bytes

File metadata and controls

30 lines (21 loc) · 862 Bytes

UserIDList

A list of user IDs.

Properties

Name Type Description Notes
user_ids List[UUID]

Example

from opal_security.models.user_id_list import UserIDList

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

# convert the object into a dict
user_id_list_dict = user_id_list_instance.to_dict()
# create an instance of UserIDList from a dict
user_id_list_from_dict = UserIDList.from_dict(user_id_list_dict)

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