conekta/conekta-node

View on GitHub
model/webhook-key-delete-response.ts

Summary

Maintainability
A
0 mins
Test Coverage
/* tslint:disable */
/* eslint-disable */
/**
 * Conekta API
 * Conekta sdk
 *
 * The version of the OpenAPI document: 2.1.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;
}