Source/Destination accounts for the quote (must have for defi quotes)
| Name | Type | Description | Notes |
|---|---|---|---|
| type | DVPSettlementType | ||
| source_account | SettlementSourceAccount | ||
| destination_account | AccountReference |
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)