/** * Typesense API * An open source search engine for building delightful search experiences. * * The version of the OpenAPI document: 30.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ApiKeySchema */ export interface ApiKeySchema { /** * * @type {string} * @memberof ApiKeySchema */ value?: string; /** * * @type {string} * @memberof ApiKeySchema */ description: string; /** * * @type {Array} * @memberof ApiKeySchema */ actions: Array; /** * * @type {Array} * @memberof ApiKeySchema */ collections: Array; /** * * @type {number} * @memberof ApiKeySchema */ expiresAt?: number; } /** * Check if a given object implements the ApiKeySchema interface. */ export declare function instanceOfApiKeySchema(value: object): value is ApiKeySchema; export declare function ApiKeySchemaFromJSON(json: any): ApiKeySchema; export declare function ApiKeySchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiKeySchema; export declare function ApiKeySchemaToJSON(json: any): ApiKeySchema; export declare function ApiKeySchemaToJSONTyped(value?: ApiKeySchema | null, ignoreDiscriminator?: boolean): any;