| 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] |
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]