Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 845 Bytes

File metadata and controls

30 lines (21 loc) · 845 Bytes

PolicyTag

Policy tag for matching

Properties

Name Type Description Notes
id str Tag identifier

Example

from fireblocks.models.policy_tag import PolicyTag

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

# convert the object into a dict
policy_tag_dict = policy_tag_instance.to_dict()
# create an instance of PolicyTag from a dict
policy_tag_from_dict = PolicyTag.from_dict(policy_tag_dict)

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