Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

File metadata and controls

32 lines (23 loc) · 1.08 KB

SCIMProviderGroupRequest

SCIMProviderGroup Serializer

Properties

Name Type Description Notes
scim_id str
group UUID
provider int

Example

from authentik_client.models.scim_provider_group_request import SCIMProviderGroupRequest

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

# convert the object into a dict
scim_provider_group_request_dict = scim_provider_group_request_instance.to_dict()
# create an instance of SCIMProviderGroupRequest from a dict
scim_provider_group_request_from_dict = SCIMProviderGroupRequest.from_dict(scim_provider_group_request_dict)

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