UNPKG

conekta

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