Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1 KB

File metadata and controls

31 lines (22 loc) · 1 KB

ServiceScope

The list of services where the release can be viewed.

Properties

Name Type Description Notes
name str Name of the Service. Eg: `payment`.
scoped_to ServiceScopedTo [optional]

Example

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)

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