Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 861 Bytes

TagRequest.md

File metadata and controls

30 lines (21 loc) · 861 Bytes

TagRequest

Properties

Name Type Description Notes
name str [optional]
color str

Example

from aiochris_oag.models.tag_request import TagRequest

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

# convert the object into a dict
tag_request_dict = tag_request_instance.to_dict()
# create an instance of TagRequest from a dict
tag_request_from_dict = TagRequest.from_dict(tag_request_dict)

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