UNPKG

conekta

Version:
39 lines (33 loc) 1.42 kB
/* tslint:disable */ /* eslint-disable */ /** * Conekta API * Conekta sdk * * The version of the OpenAPI document: 2.2.0 * Contact: engineering@conekta.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { PaymentMethodCardResponse } from './payment-method-card-response'; // May contain unused imports in some cases // @ts-ignore import type { PaymentMethodCashRecurrentResponse } from './payment-method-cash-recurrent-response'; // May contain unused imports in some cases // @ts-ignore import type { PaymentMethodCashResponse } from './payment-method-cash-response'; // May contain unused imports in some cases // @ts-ignore import type { PaymentMethodCashResponseAllOfAgreements } from './payment-method-cash-response-all-of-agreements'; // May contain unused imports in some cases // @ts-ignore import type { PaymentMethodSpeiRecurrent } from './payment-method-spei-recurrent'; /** * @type CreateCustomerPaymentMethodsResponse * @export */ export type CreateCustomerPaymentMethodsResponse = { type: 'card' } & PaymentMethodCardResponse | { type: 'cash' } & PaymentMethodCashResponse | { type: 'cash_recurrent' } & PaymentMethodCashRecurrentResponse | { type: 'spei_recurrent' } & PaymentMethodSpeiRecurrent;