| Name |
Type |
Description |
Notes |
| label |
str |
The tag label |
[optional] |
| description |
str |
Description for the tag |
[optional] |
from fireblocks.models.update_tag_request import UpdateTagRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateTagRequest from a JSON string
update_tag_request_instance = UpdateTagRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateTagRequest.to_json())
# convert the object into a dict
update_tag_request_dict = update_tag_request_instance.to_dict()
# create an instance of UpdateTagRequest from a dict
update_tag_request_from_dict = UpdateTagRequest.from_dict(update_tag_request_dict)
[Back to Model list] [Back to API list] [Back to README]