Serialize Application info
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| label | str |
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)