TransferAccountOperationDto Data Type

Represents the data necessary to establish an account operation transfer from one customer to another .

Available Since
8.0.0
Implemented Interfaces
Serializable
Properties
name data type description
fromCustomerAccountCode string The source customer account.
accountOperationId number The account operation id.
toCustomerAccounts array of TransferCustomerAccountDto The recipient customer accounts.

Example

{
  "fromCustomerAccountCode" : "...",
  "accountOperationId" : 12345,
  "toCustomerAccounts" : [ {
    "fromCustomerAccountCode" : "...",
    "toCustomerAccountCode" : "...",
    "amount" : 12345.0
  }, {
    "fromCustomerAccountCode" : "...",
    "toCustomerAccountCode" : "...",
    "amount" : 12345.0
  } ]
}