MicrosoftEntraProviderGroup Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| microsoft_id | str | ||
| group | UUID | ||
| provider | int |
from authentik_client.models.microsoft_entra_provider_group_request import MicrosoftEntraProviderGroupRequest
# TODO update the JSON string below
json = "{}"
# create an instance of MicrosoftEntraProviderGroupRequest from a JSON string
microsoft_entra_provider_group_request_instance = MicrosoftEntraProviderGroupRequest.from_json(json)
# print the JSON string representation of the object
print(MicrosoftEntraProviderGroupRequest.to_json())
# convert the object into a dict
microsoft_entra_provider_group_request_dict = microsoft_entra_provider_group_request_instance.to_dict()
# create an instance of MicrosoftEntraProviderGroupRequest from a dict
microsoft_entra_provider_group_request_from_dict = MicrosoftEntraProviderGroupRequest.from_dict(microsoft_entra_provider_group_request_dict)