UNPKG

@apideck/node

Version:
41 lines (40 loc) 1.44 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * ACH-specific details about `BANK_ACCOUNT` type payments with the `transfer_type` of `ACH`. * @export * @interface PosBankAccountAchDetails */ export interface PosBankAccountAchDetails { /** * The routing number for the bank account. * @type {string} * @memberof PosBankAccountAchDetails */ routing_number?: string; /** * The last few digits of the bank account number. * @type {string} * @memberof PosBankAccountAchDetails */ account_number_suffix?: string; /** * The type of the bank account performing the transfer. The account type can be `CHECKING`, * `SAVINGS`, or `UNKNOWN`. * @type {string} * @memberof PosBankAccountAchDetails */ account_type?: string; } export declare function PosBankAccountAchDetailsFromJSON(json: any): PosBankAccountAchDetails; export declare function PosBankAccountAchDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PosBankAccountAchDetails; export declare function PosBankAccountAchDetailsToJSON(value?: PosBankAccountAchDetails | null): any;