UNPKG

digitalfemsa

Version:
79 lines (74 loc) 1.83 kB
/* tslint:disable */ /* eslint-disable */ /** * 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. */ /** * api keys model * @export * @interface ApiKeyResponseOnDelete */ export interface ApiKeyResponseOnDelete { /** * Indicates if the api key is active * @type {boolean} * @memberof ApiKeyResponseOnDelete */ 'active'?: boolean; /** * Unix timestamp in seconds of when the api key was created * @type {number} * @memberof ApiKeyResponseOnDelete */ 'created_at'?: number; /** * A name or brief explanation of what this api key is used for * @type {string} * @memberof ApiKeyResponseOnDelete */ 'description'?: string; /** * Indicates if the api key is in production * @type {boolean} * @memberof ApiKeyResponseOnDelete */ 'livemode'?: boolean; /** * The first few characters of the authentication_token * @type {string} * @memberof ApiKeyResponseOnDelete */ 'prefix'?: string; /** * Unique identifier of the api key * @type {string} * @memberof ApiKeyResponseOnDelete */ 'id'?: string; /** * Object name, value is \'api_key\' * @type {string} * @memberof ApiKeyResponseOnDelete */ 'object'?: string; /** * Indicates if the api key was deleted * @type {boolean} * @memberof ApiKeyResponseOnDelete */ 'deleted'?: boolean; /** * Indicates if the api key is private or public * @type {string} * @memberof ApiKeyResponseOnDelete */ 'role'?: string; }