/** * 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 AnalyticsEventCreateResponse */ export interface AnalyticsEventCreateResponse { /** * * @type {boolean} * @memberof AnalyticsEventCreateResponse */ ok: boolean; } /** * Check if a given object implements the AnalyticsEventCreateResponse interface. */ export declare function instanceOfAnalyticsEventCreateResponse(value: object): value is AnalyticsEventCreateResponse; export declare function AnalyticsEventCreateResponseFromJSON(json: any): AnalyticsEventCreateResponse; export declare function AnalyticsEventCreateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnalyticsEventCreateResponse; export declare function AnalyticsEventCreateResponseToJSON(json: any): AnalyticsEventCreateResponse; export declare function AnalyticsEventCreateResponseToJSONTyped(value?: AnalyticsEventCreateResponse | null, ignoreDiscriminator?: boolean): any;