You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whether this mapping should be hidden from end users. - New mappings: If not provided, defaults to `false` - Existing mappings: If not provided, existing value is preserved (no change) - Explicit values: If provided, value is updated to the specified boolean
[optional]
Example
fromopal_security.models.create_idp_group_mapping_requestimportCreateIdpGroupMappingRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateIdpGroupMappingRequest from a JSON stringcreate_idp_group_mapping_request_instance=CreateIdpGroupMappingRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateIdpGroupMappingRequest.to_json())
# convert the object into a dictcreate_idp_group_mapping_request_dict=create_idp_group_mapping_request_instance.to_dict()
# create an instance of CreateIdpGroupMappingRequest from a dictcreate_idp_group_mapping_request_from_dict=CreateIdpGroupMappingRequest.from_dict(create_idp_group_mapping_request_dict)