MicrosoftEntraProviderUser Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | [readonly] | |
| microsoft_id | str | ||
| user | int | ||
| user_obj | PartialUser | [readonly] | |
| provider | int | ||
| attributes | Dict[str, object] | [readonly] |
from authentik_client.models.microsoft_entra_provider_user import MicrosoftEntraProviderUser
# TODO update the JSON string below
json = "{}"
# create an instance of MicrosoftEntraProviderUser from a JSON string
microsoft_entra_provider_user_instance = MicrosoftEntraProviderUser.from_json(json)
# print the JSON string representation of the object
print(MicrosoftEntraProviderUser.to_json())
# convert the object into a dict
microsoft_entra_provider_user_dict = microsoft_entra_provider_user_instance.to_dict()
# create an instance of MicrosoftEntraProviderUser from a dict
microsoft_entra_provider_user_from_dict = MicrosoftEntraProviderUser.from_dict(microsoft_entra_provider_user_dict)