Provider Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | int | [readonly] | |
| name | str | ||
| authentication_flow | UUID | Flow used for authentication when the associated application is accessed by an un-authenticated user. | [optional] |
| authorization_flow | UUID | Flow used when authorizing this provider. | |
| invalidation_flow | UUID | Flow used ending the session from a provider. | |
| property_mappings | List[UUID] | [optional] | |
| component | str | Get object component so that we know how to edit the object | [readonly] |
| assigned_application_slug | str | Internal application name, used in URLs. | [readonly] |
| assigned_application_name | str | Application's display Name. | [readonly] |
| assigned_backchannel_application_slug | str | Internal application name, used in URLs. | [readonly] |
| assigned_backchannel_application_name | str | Application's display Name. | [readonly] |
| verbose_name | str | Return object's verbose_name | [readonly] |
| verbose_name_plural | str | Return object's plural verbose_name | [readonly] |
| meta_model_name | str | Return internal model name | [readonly] |
from authentik_client.models.provider import Provider
# TODO update the JSON string below
json = "{}"
# create an instance of Provider from a JSON string
provider_instance = Provider.from_json(json)
# print the JSON string representation of the object
print(Provider.to_json())
# convert the object into a dict
provider_dict = provider_instance.to_dict()
# create an instance of Provider from a dict
provider_from_dict = Provider.from_dict(provider_dict)