Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.52 KB

File metadata and controls

38 lines (29 loc) · 1.52 KB

GroupUser

Group Access User Object ### Description The GroupAccessUser object is used to represent a user with access to a group. ### Usage Example Fetch from the LIST GroupUsers endpoint.

Properties

Name Type Description Notes
group_id UUID The ID of the group.
group_name str The name of the group.
description str The description of the group.
user_id UUID The ID of the user.
access_level GroupAccessLevel [optional]
full_name str The user's full name.
email str The user's email.
expiration_date datetime The day and time the user's access will expire. [optional]
propagation_status PropagationStatus [optional]

Example

from opal_security.models.group_user import GroupUser

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

# convert the object into a dict
group_user_dict = group_user_instance.to_dict()
# create an instance of GroupUser from a dict
group_user_from_dict = GroupUser.from_dict(group_user_dict)

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