Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.13 KB

File metadata and controls

35 lines (26 loc) · 1.13 KB

SCIMProviderUser

SCIMProviderUser Serializer

Properties

Name Type Description Notes
id UUID [readonly]
scim_id str
user int
user_obj PartialUser [readonly]
provider int
attributes Dict[str, object] [readonly]

Example

from authentik_client.models.scim_provider_user import SCIMProviderUser

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

# convert the object into a dict
scim_provider_user_dict = scim_provider_user_instance.to_dict()
# create an instance of SCIMProviderUser from a dict
scim_provider_user_from_dict = SCIMProviderUser.from_dict(scim_provider_user_dict)

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