Name | Type | Description | Notes |
---|---|---|---|
cases | Array<Modelcase> | Cases associated with the account closure | [optional][readonly] |
destination_id | String | For an ACH payment, this is the external account UUID. For an internal payment, this is the account UUID. | |
payment_method | String | Payment method for the final payment if the account being closed carries a balance. A BANK_DRAFT payment method is issued by the sponsor bank to the account holder. | |
reason | AccountClosureReason | ||
reason_details | String | Additional details about the reason for closing the account | |
validation_responses | Array<AccountClosureValidationResponse> | [optional][readonly] |
require 'synctera'
instance = Synctera::AccountClosure.new(
cases: null,
destination_id: null,
payment_method: null,
reason: null,
reason_details: null,
validation_responses: null
)