Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.3 KB

File metadata and controls

32 lines (23 loc) · 1.3 KB

ServiceScopeWithMetadata

The list of services where the release can be viewed.

Properties

Name Type Description Notes
id str Unique ID of the Service. Eg: `3feb3dcd206c166ef2b41c707e0cd38d7cd325aa`.
name str Name of the Service. Eg: `payment`. [optional]
scoped_to ServiceScopedToWithMetadata [optional]

Example

from instana_client.models.service_scope_with_metadata import ServiceScopeWithMetadata

# TODO update the JSON string below
json = "{}"
# create an instance of ServiceScopeWithMetadata from a JSON string
service_scope_with_metadata_instance = ServiceScopeWithMetadata.from_json(json)
# print the JSON string representation of the object
print(ServiceScopeWithMetadata.to_json())

# convert the object into a dict
service_scope_with_metadata_dict = service_scope_with_metadata_instance.to_dict()
# create an instance of ServiceScopeWithMetadata from a dict
service_scope_with_metadata_from_dict = ServiceScopeWithMetadata.from_dict(service_scope_with_metadata_dict)

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