Name | Type | Description | Notes |
---|---|---|---|
to_exchange | List[ToExchangeTransaction] | [optional] | |
to_collateral | List[ToCollateralTransaction] | [optional] |
from fireblocks.models.exchange_settlement_transactions_response import ExchangeSettlementTransactionsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ExchangeSettlementTransactionsResponse from a JSON string
exchange_settlement_transactions_response_instance = ExchangeSettlementTransactionsResponse.from_json(json)
# print the JSON string representation of the object
print(ExchangeSettlementTransactionsResponse.to_json())
# convert the object into a dict
exchange_settlement_transactions_response_dict = exchange_settlement_transactions_response_instance.to_dict()
# create an instance of ExchangeSettlementTransactionsResponse from a dict
exchange_settlement_transactions_response_from_dict = ExchangeSettlementTransactionsResponse.from_dict(exchange_settlement_transactions_response_dict)