Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

ApplicationScope

The list of application perspectives where the release can be viewed.

Properties

Name Type Description Notes
name str Name of the Application Perspective. Eg: `app1`.

Example

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)

[Back to Model list] [Back to API list] [Back to README]