UNPKG

conekta

Version:
35 lines (26 loc) 772 B
/* 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. */ /** * It is a parameter that allows to identify in the response, the type of event that is being generated. * @export * @enum {string} */ export const EventTypes = { webhookPing: 'webhook_ping', orderPaid: 'order.paid', orderExpired: 'order.expired', orderCanceled: 'order.canceled', orderPendingPayment: 'order.pending_payment' } as const; export type EventTypes = typeof EventTypes[keyof typeof EventTypes];