Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.16 KB

TransactionRequestAmount.md

File metadata and controls

29 lines (20 loc) · 1.16 KB

TransactionRequestAmount

For TRANSFER operations, the requested amount to transfer, in the asset’s unit. Fireblocks recommends using a numeric string for accurate precision. Although a number input exists, it is deprecated.

Properties

Name Type Description Notes

Example

from fireblocks.models.transaction_request_amount import TransactionRequestAmount

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

# convert the object into a dict
transaction_request_amount_dict = transaction_request_amount_instance.to_dict()
# create an instance of TransactionRequestAmount from a dict
transaction_request_amount_from_dict = TransactionRequestAmount.from_dict(transaction_request_amount_dict)

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