Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

ScreeningTRLinkAmount

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.screening_tr_link_amount import ScreeningTRLinkAmount

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

# convert the object into a dict
screening_tr_link_amount_dict = screening_tr_link_amount_instance.to_dict()
# create an instance of ScreeningTRLinkAmount from a dict
screening_tr_link_amount_from_dict = ScreeningTRLinkAmount.from_dict(screening_tr_link_amount_dict)

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