The list of application perspectives where the release can be viewed.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Unique ID of the Application Perspective. Eg: `Av62RoIKQv-A3n6DbMQh9g`. | |
| name | str | Name of the Application Perspective. Eg: `app1`. | [optional] |
from instana_client.models.application_scope_with_metadata import ApplicationScopeWithMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationScopeWithMetadata from a JSON string
application_scope_with_metadata_instance = ApplicationScopeWithMetadata.from_json(json)
# print the JSON string representation of the object
print(ApplicationScopeWithMetadata.to_json())
# convert the object into a dict
application_scope_with_metadata_dict = application_scope_with_metadata_instance.to_dict()
# create an instance of ApplicationScopeWithMetadata from a dict
application_scope_with_metadata_from_dict = ApplicationScopeWithMetadata.from_dict(application_scope_with_metadata_dict)