/** * 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 ApiKeyDeleteResponse */ export interface ApiKeyDeleteResponse { /** * The id of the API key that was deleted * @type {number} * @memberof ApiKeyDeleteResponse */ id: number; } /** * Check if a given object implements the ApiKeyDeleteResponse interface. */ export declare function instanceOfApiKeyDeleteResponse(value: object): value is ApiKeyDeleteResponse; export declare function ApiKeyDeleteResponseFromJSON(json: any): ApiKeyDeleteResponse; export declare function ApiKeyDeleteResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiKeyDeleteResponse; export declare function ApiKeyDeleteResponseToJSON(json: any): ApiKeyDeleteResponse; export declare function ApiKeyDeleteResponseToJSONTyped(value?: ApiKeyDeleteResponse | null, ignoreDiscriminator?: boolean): any;