Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 979 Bytes

File metadata and controls

33 lines (24 loc) · 979 Bytes

GroupMapping

Properties

Name Type Description Notes
group_id str
id str [optional]
key str
team_id str [optional]
value str

Example

from instana_client.models.group_mapping import GroupMapping

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

# convert the object into a dict
group_mapping_dict = group_mapping_instance.to_dict()
# create an instance of GroupMapping from a dict
group_mapping_from_dict = GroupMapping.from_dict(group_mapping_dict)

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