Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 847 Bytes

TagValue.md

File metadata and controls

30 lines (21 loc) · 847 Bytes

TagValue

Properties

Name Type Description Notes
title str [optional]
internal_id int [optional]

Example

from qaseio.models.tag_value import TagValue

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

# convert the object into a dict
tag_value_dict = tag_value_instance.to_dict()
# create an instance of TagValue from a dict
tag_value_form_dict = tag_value.from_dict(tag_value_dict)

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