Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.12 KB

AccountClosure.md

File metadata and controls

28 lines (22 loc) · 1.12 KB

Synctera::AccountClosure

Properties

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]

Example

require 'synctera'

instance = Synctera::AccountClosure.new(
  cases: null,
  destination_id: null,
  payment_method: null,
  reason: null,
  reason_details: null,
  validation_responses: null
)