Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

File metadata and controls

33 lines (24 loc) · 1.18 KB

IdpGroupMapping

Information about a group mapping.

Properties

Name Type Description Notes
app_resource_id UUID The ID of the app resource. [optional]
group_id UUID The ID of the group.
alias str The alias of the group. [optional]
hidden_from_end_user bool A bool representing whether or not the group is hidden from the end user.

Example

from opal_security.models.idp_group_mapping import IdpGroupMapping

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

# convert the object into a dict
idp_group_mapping_dict = idp_group_mapping_instance.to_dict()
# create an instance of IdpGroupMapping from a dict
idp_group_mapping_from_dict = IdpGroupMapping.from_dict(idp_group_mapping_dict)

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