UNPKG

conekta

Version:
37 lines (32 loc) 880 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. */ /** * a webhook * @export * @interface WebhookRequest */ export interface WebhookRequest { /** * Here you must place the URL of your Webhook remember that you must program what you will do with the events received. Also do not forget to handle the HTTPS protocol for greater security. * @type {string} * @memberof WebhookRequest */ 'url': string; /** * events that will be sent to the webhook * @type {Array<string>} * @memberof WebhookRequest */ 'subscribed_events'?: Array<string>; }