MicrosoftEntraProviderGroup Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | [readonly] | |
| microsoft_id | str | ||
| group | UUID | ||
| group_obj | PartialGroup | [readonly] | |
| provider | int | ||
| attributes | Dict[str, object] | [readonly] |
from authentik_client.models.microsoft_entra_provider_group import MicrosoftEntraProviderGroup
# TODO update the JSON string below
json = "{}"
# create an instance of MicrosoftEntraProviderGroup from a JSON string
microsoft_entra_provider_group_instance = MicrosoftEntraProviderGroup.from_json(json)
# print the JSON string representation of the object
print(MicrosoftEntraProviderGroup.to_json())
# convert the object into a dict
microsoft_entra_provider_group_dict = microsoft_entra_provider_group_instance.to_dict()
# create an instance of MicrosoftEntraProviderGroup from a dict
microsoft_entra_provider_group_from_dict = MicrosoftEntraProviderGroup.from_dict(microsoft_entra_provider_group_dict)