conekta/conekta-node

View on GitHub
model/webhook-key-create-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 WebhookKeyCreateResponse
 */
export interface WebhookKeyCreateResponse {
    /**
     * Indicates if the webhook key is active
     * @type {boolean}
     * @memberof WebhookKeyCreateResponse
     */
    'active'?: boolean;
    /**
     * Unix timestamp in seconds with the creation date of the webhook key
     * @type {number}
     * @memberof WebhookKeyCreateResponse
     */
    'created_at'?: number;
    /**
     * Unique identifier of the webhook key
     * @type {string}
     * @memberof WebhookKeyCreateResponse
     */
    'id'?: string;
    /**
     * Indicates if the webhook key is in live mode
     * @type {boolean}
     * @memberof WebhookKeyCreateResponse
     */
    'livemode'?: boolean;
    /**
     * Object name, value is webhook_key
     * @type {string}
     * @memberof WebhookKeyCreateResponse
     */
    'object'?: string;
    /**
     * Public key to be used in the webhook
     * @type {string}
     * @memberof WebhookKeyCreateResponse
     */
    'public_key'?: string;
}