Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

SmartTransferManuallyFundTerm.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

SmartTransferManuallyFundTerm

Properties

Name Type Description Notes
tx_hash str

Example

from fireblocks.models.smart_transfer_manually_fund_term import SmartTransferManuallyFundTerm

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

# convert the object into a dict
smart_transfer_manually_fund_term_dict = smart_transfer_manually_fund_term_instance.to_dict()
# create an instance of SmartTransferManuallyFundTerm from a dict
smart_transfer_manually_fund_term_from_dict = SmartTransferManuallyFundTerm.from_dict(smart_transfer_manually_fund_term_dict)

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