Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.23 KB

File metadata and controls

35 lines (26 loc) · 1.23 KB

App

App Object ### Description The App object is used to represent an app to an application. ### Usage Example List from the GET Apps endpoint.

Properties

Name Type Description Notes
app_id UUID The ID of the app.
name str The name of the app.
description str A description of the app.
admin_owner_id UUID The ID of the owner of the app.
app_type AppTypeEnum
validations List[AppValidation] Validation checks of an apps' configuration and permissions. [optional]

Example

from opal_security.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]