UNPKG

digitalfemsa

Version:
55 lines (54 loc) 1.34 kB
/** * Femsa API * Femsa sdk * * The version of the OpenAPI document: 2.1.0 * Contact: engineering@femsa.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; }