conekta
Version:
OpenAPI client for conekta
43 lines (38 loc) • 1.06 kB
text/typescript
/* 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.
*/
/**
* an updated webhook
* @export
* @interface WebhookUpdateRequest
*/
export interface WebhookUpdateRequest {
/**
* 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 WebhookUpdateRequest
*/
'url'?: string;
/**
* events that will be sent to the webhook
* @type {Array<string>}
* @memberof WebhookUpdateRequest
*/
'subscribed_events'?: Array<string>;
/**
* whether the webhook is active or not
* @type {boolean}
* @memberof WebhookUpdateRequest
*/
'active'?: boolean;
}