The list of services where the release can be viewed.
| 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] |
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)