Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 784 Bytes

File metadata and controls

31 lines (22 loc) · 784 Bytes

App

Serialize Application info

Properties

Name Type Description Notes
name str
label str

Example

from authentik_client.models.app import App

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

# convert the object into a dict
app_dict = app_instance.to_dict()
# create an instance of App from a dict
app_from_dict = App.from_dict(app_dict)

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