A list of user IDs.
| Name | Type | Description | Notes |
|---|---|---|---|
| user_ids | List[UUID] |
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)