Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

File metadata and controls

32 lines (23 loc) · 1.03 KB

Settlement

Settlement configuration for the order

Properties

Name Type Description Notes
type DVPSettlementType
destination_account AccountReference
source_account SettlementSourceAccount

Example

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)

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