Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.63 KB

File metadata and controls

40 lines (31 loc) · 1.63 KB

PatchedApplicationRequest

Application Serializer

Properties

Name Type Description Notes
name str Application's display Name. [optional]
slug str Internal application name, used in URLs. [optional]
provider int [optional]
backchannel_providers List[int] [optional]
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_description str [optional]
meta_publisher str [optional]
policy_engine_mode PolicyEngineMode [optional]
group str [optional]

Example

from authentik_client.models.patched_application_request import PatchedApplicationRequest

# TODO update the JSON string below
json = "{}"
# create an instance of PatchedApplicationRequest from a JSON string
patched_application_request_instance = PatchedApplicationRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedApplicationRequest.to_json())

# convert the object into a dict
patched_application_request_dict = patched_application_request_instance.to_dict()
# create an instance of PatchedApplicationRequest from a dict
patched_application_request_from_dict = PatchedApplicationRequest.from_dict(patched_application_request_dict)

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