Settlement configuration for the order
| Name | Type | Description | Notes |
|---|---|---|---|
| type | DVPSettlementType | ||
| destination_account | AccountReference | ||
| source_account | SettlementSourceAccount |
from fireblocks.models.settlement import Settlement
# TODO update the JSON string below
json = "{}"
# create an instance of Settlement from a JSON string
settlement_instance = Settlement.from_json(json)
# print the JSON string representation of the object
print(Settlement.to_json())
# convert the object into a dict
settlement_dict = settlement_instance.to_dict()
# create an instance of Settlement from a dict
settlement_from_dict = Settlement.from_dict(settlement_dict)