Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 905 Bytes

File metadata and controls

31 lines (22 loc) · 905 Bytes

ApiLogTag

Properties

Name Type Description Notes
key str [optional]
name str [optional]
value object [optional]

Example

from instana_client.models.api_log_tag import ApiLogTag

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

# convert the object into a dict
api_log_tag_dict = api_log_tag_instance.to_dict()
# create an instance of ApiLogTag from a dict
api_log_tag_from_dict = ApiLogTag.from_dict(api_log_tag_dict)

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