Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

SmartTransferFundDvpTicket.md

File metadata and controls

31 lines (22 loc) · 1.16 KB

SmartTransferFundDvpTicket

Properties

Name Type Description Notes
fee str Transaction fee [optional]
fee_level str Transaction fee level. [optional]
note str Transaction note [optional]

Example

from fireblocks.models.smart_transfer_fund_dvp_ticket import SmartTransferFundDvpTicket

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

# convert the object into a dict
smart_transfer_fund_dvp_ticket_dict = smart_transfer_fund_dvp_ticket_instance.to_dict()
# create an instance of SmartTransferFundDvpTicket from a dict
smart_transfer_fund_dvp_ticket_from_dict = SmartTransferFundDvpTicket.from_dict(smart_transfer_fund_dvp_ticket_dict)

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