Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.35 KB

File metadata and controls

31 lines (22 loc) · 1.35 KB

CreateRequestInfoGroupsInner

Properties

Name Type Description Notes
id UUID The ID of the group requested. Should not be specified if resource_id is specified.
access_level_remote_id str The ID of the access level requested on the remote system. [optional]
access_level_name str The ID of the access level requested on the remote system. [optional]

Example

from opal_security.models.create_request_info_groups_inner import CreateRequestInfoGroupsInner

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

# convert the object into a dict
create_request_info_groups_inner_dict = create_request_info_groups_inner_instance.to_dict()
# create an instance of CreateRequestInfoGroupsInner from a dict
create_request_info_groups_inner_from_dict = CreateRequestInfoGroupsInner.from_dict(create_request_info_groups_inner_dict)

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