| Name |
Type |
Description |
Notes |
| app |
Application |
|
[optional] |
| description |
str |
The description of the application |
[optional] |
| name |
str |
The user friendly name of the application |
[optional] |
| static |
bool |
If true, the application/strike is generated from controller |
[optional] [readonly] |
| user_defined |
bool |
If true, the application was created by the user |
[optional] [readonly] |
| app_metadata |
AppsecAppMetadata |
|
[optional] |
| id |
str |
The unique identifier of the application |
[optional] [readonly] |
| last_modified |
int |
|
[optional] |
| links |
List[APILink] |
|
[optional] |
| owner |
str |
The friendly display name of the application's owner |
[optional] [readonly] |
| owner_id |
str |
The unique identifier of the application's owner |
[optional] [readonly] |
from cyperf.models.appsec_app import AppsecApp
# TODO update the JSON string below
json = "{}"
# create an instance of AppsecApp from a JSON string
appsec_app_instance = AppsecApp.from_json(json)
# print the JSON string representation of the object
print(AppsecApp.to_json())
# convert the object into a dict
appsec_app_dict = appsec_app_instance.to_dict()
# create an instance of AppsecApp from a dict
appsec_app_from_dict = AppsecApp.from_dict(appsec_app_dict)
[Back to Model list] [Back to API list] [Back to README]