Application Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | UUID | [readonly] | |
| name | str | Application's display Name. | |
| slug | str | Internal application name, used in URLs. | |
| provider | int | [optional] | |
| provider_obj | Provider | [readonly] | |
| backchannel_providers | List[int] | [optional] | |
| backchannel_providers_obj | List[Provider] | [readonly] | |
| launch_url | str | Allow formatting of launch URL | [readonly] |
| open_in_new_tab | bool | Open launch URL in a new browser tab or window. | [optional] |
| meta_launch_url | str | [optional] | |
| meta_icon | str | [optional] | |
| meta_icon_url | str | Get the URL to the App Icon image | [readonly] |
| meta_icon_themed_urls | ThemedUrls | [readonly] | |
| meta_description | str | [optional] | |
| meta_publisher | str | [optional] | |
| policy_engine_mode | PolicyEngineMode | [optional] | |
| group | str | [optional] |
from authentik_client.models.application import Application
# TODO update the JSON string below
json = "{}"
# create an instance of Application from a JSON string
application_instance = Application.from_json(json)
# print the JSON string representation of the object
print(Application.to_json())
# convert the object into a dict
application_dict = application_instance.to_dict()
# create an instance of Application from a dict
application_from_dict = Application.from_dict(application_dict)