Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

DVPSettlement

Source/Destination accounts for the quote (must have for defi quotes)

Properties

Name Type Description Notes
type DVPSettlementType
source_account SettlementSourceAccount
destination_account AccountReference

Example

from fireblocks.models.dvp_settlement import DVPSettlement

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

# convert the object into a dict
dvp_settlement_dict = dvp_settlement_instance.to_dict()
# create an instance of DVPSettlement from a dict
dvp_settlement_from_dict = DVPSettlement.from_dict(dvp_settlement_dict)

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