UNPKG

@paciolan/cybersource-sdk

Version:
53 lines (52 loc) 1.57 kB
/** * CyberSource Merged Spec * All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html * * OpenAPI spec version: 0.0.1 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /** * * @export * @interface Boardingv1registrationsOrganizationInformationKYCDepositBankAccount */ export interface Boardingv1registrationsOrganizationInformationKYCDepositBankAccount { /** * * @type {string} * @memberof Boardingv1registrationsOrganizationInformationKYCDepositBankAccount */ accountHolderName: string; /** * * @type {string} * @memberof Boardingv1registrationsOrganizationInformationKYCDepositBankAccount */ accountType: Boardingv1registrationsOrganizationInformationKYCDepositBankAccountAccountTypeEnum; /** * * @type {string} * @memberof Boardingv1registrationsOrganizationInformationKYCDepositBankAccount */ accountRoutingNumber: string; /** * * @type {string} * @memberof Boardingv1registrationsOrganizationInformationKYCDepositBankAccount */ accountNumber: string; } /** * @export * @enum {string} */ export declare enum Boardingv1registrationsOrganizationInformationKYCDepositBankAccountAccountTypeEnum { Checking = "checking", Savings = "savings", Corporatechecking = "corporatechecking", Corporatesavings = "corporatesavings" }