Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

MicrosoftEntraProviderGroupRequest

MicrosoftEntraProviderGroup Serializer

Properties

Name Type Description Notes
microsoft_id str
group UUID
provider int

Example

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)

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