Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

TRLinkAmount

TRLink amount definition with range and currency, compatible with TAP format from Policy Engine V2

Properties

Name Type Description Notes
range AmountRangeMinMax [optional]
currency str Currency type [optional]

Example

from fireblocks.models.tr_link_amount import TRLinkAmount

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

# convert the object into a dict
tr_link_amount_dict = tr_link_amount_instance.to_dict()
# create an instance of TRLinkAmount from a dict
tr_link_amount_from_dict = TRLinkAmount.from_dict(tr_link_amount_dict)

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