Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.45 KB

File metadata and controls

34 lines (25 loc) · 1.45 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]
allowed_entity_types List[str] Allow-list of entity types this tag may be attached to. Soft-defaults to ['vault_account'] when omitted, and is immutable after creation. Known values: vault_account (default), contact. [optional] [default to ["vault_account"]]

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]