Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 912 Bytes

File metadata and controls

30 lines (21 loc) · 912 Bytes

ScopeBinding

Properties

Name Type Description Notes
scope_id str [optional]
scope_role_id str [optional]

Example

from instana_client.models.scope_binding import ScopeBinding

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

# convert the object into a dict
scope_binding_dict = scope_binding_instance.to_dict()
# create an instance of ScopeBinding from a dict
scope_binding_from_dict = ScopeBinding.from_dict(scope_binding_dict)

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