UNPKG

conekta

Version:
61 lines (56 loc) 1.39 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. */ /** * webhook keys model * @export * @interface WebhookKeyDeleteResponse */ export interface WebhookKeyDeleteResponse { /** * Indicates if the webhook key is active * @type {boolean} * @memberof WebhookKeyDeleteResponse */ 'active'?: boolean; /** * Unix timestamp in seconds with the creation date of the webhook key * @type {number} * @memberof WebhookKeyDeleteResponse */ 'created_at'?: number; /** * Indicates if the webhook key is deleted * @type {boolean} * @memberof WebhookKeyDeleteResponse */ 'deleted'?: boolean; /** * Unique identifier of the webhook key * @type {string} * @memberof WebhookKeyDeleteResponse */ 'id'?: string; /** * Indicates if the webhook key is in live mode * @type {boolean} * @memberof WebhookKeyDeleteResponse */ 'livemode'?: boolean; /** * Object name, value is webhook_key * @type {string} * @memberof WebhookKeyDeleteResponse */ 'object'?: string; }