The list of services where the release can be viewed.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of the Service. Eg: `payment`. | |
| scoped_to | ServiceScopedTo | [optional] |
from instana_client.models.service_scope import ServiceScope
# TODO update the JSON string below
json = "{}"
# create an instance of ServiceScope from a JSON string
service_scope_instance = ServiceScope.from_json(json)
# print the JSON string representation of the object
print(ServiceScope.to_json())
# convert the object into a dict
service_scope_dict = service_scope_instance.to_dict()
# create an instance of ServiceScope from a dict
service_scope_from_dict = ServiceScope.from_dict(service_scope_dict)