Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.1 KB

File metadata and controls

35 lines (26 loc) · 1.1 KB

RoleMappingOverview

Properties

Name Type Description Notes
id str
key str
role str
role_id str
team str [optional]
team_id str [optional]
value str

Example

from instana_client.models.role_mapping_overview import RoleMappingOverview

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

# convert the object into a dict
role_mapping_overview_dict = role_mapping_overview_instance.to_dict()
# create an instance of RoleMappingOverview from a dict
role_mapping_overview_from_dict = RoleMappingOverview.from_dict(role_mapping_overview_dict)

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