/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { RuleActionDto } from './RuleActionDto'; /** * * @export * @interface TypesenseRuleActionDto */ export interface TypesenseRuleActionDto extends RuleActionDto { /** * The url to the instance or cluster. * @type {string} * @memberof TypesenseRuleActionDto */ host: string; /** * The name of the index. * @type {string} * @memberof TypesenseRuleActionDto */ indexName: string; /** * The api key. * @type {string} * @memberof TypesenseRuleActionDto */ apiKey: string; /** * The optional custom document. * @type {string} * @memberof TypesenseRuleActionDto */ document?: string | null; /** * The condition when to delete the document. * @type {string} * @memberof TypesenseRuleActionDto */ _delete?: string | null; } /** * Check if a given object implements the TypesenseRuleActionDto interface. */ export declare function instanceOfTypesenseRuleActionDto(value: any): value is TypesenseRuleActionDto; export declare function TypesenseRuleActionDtoFromJSON(json: any): TypesenseRuleActionDto; export declare function TypesenseRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): TypesenseRuleActionDto; export declare function TypesenseRuleActionDtoToJSON(value?: TypesenseRuleActionDto | null, _ignoreDiscriminator?: boolean): any;