The list of application perspectives where the release can be viewed.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of the Application Perspective. Eg: `app1`. |
from instana_client.models.application_scope import ApplicationScope
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationScope from a JSON string
application_scope_instance = ApplicationScope.from_json(json)
# print the JSON string representation of the object
print(ApplicationScope.to_json())
# convert the object into a dict
application_scope_dict = application_scope_instance.to_dict()
# create an instance of ApplicationScope from a dict
application_scope_from_dict = ApplicationScope.from_dict(application_scope_dict)