Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

File metadata and controls

33 lines (24 loc) · 1.18 KB

CreateTagRequest

Properties

Name Type Description Notes
label str The tag label
description str Description for the tag [optional]
color str The tag color in hex format [optional]
is_protected bool Indication if the tag is protected tag [optional] [default to False]
type TagType [optional]

Example

from fireblocks.models.create_tag_request import CreateTagRequest

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

# convert the object into a dict
create_tag_request_dict = create_tag_request_instance.to_dict()
# create an instance of CreateTagRequest from a dict
create_tag_request_from_dict = CreateTagRequest.from_dict(create_tag_request_dict)

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