Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 996 Bytes

RuntimeTag.md

File metadata and controls

31 lines (22 loc) · 996 Bytes

RuntimeTag

Properties

Name Type Description Notes
name str A string that references a tag
color str Color associated with the tag in an UI.
description str Description of the tag [optional]

Example

from waylay.services.registry.models.runtime_tag import RuntimeTag

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

# convert the object into a dict
runtime_tag_dict = runtime_tag_instance.to_dict()
# create an instance of RuntimeTag from a dict
runtime_tag_form_dict = runtime_tag.from_dict(runtime_tag_dict)

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