Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

ApplicationScopeWithMetadata

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

Properties

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]

Example

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)

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