Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1015 Bytes

File metadata and controls

30 lines (21 loc) · 1015 Bytes

ServiceScopedTo

The list of application perspectives where the service is present.

Properties

Name Type Description Notes
applications List[ApplicationScope]

Example

from instana_client.models.service_scoped_to import ServiceScopedTo

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

# convert the object into a dict
service_scoped_to_dict = service_scoped_to_instance.to_dict()
# create an instance of ServiceScopedTo from a dict
service_scoped_to_from_dict = ServiceScopedTo.from_dict(service_scoped_to_dict)

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