/** * 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 AlgoliaRuleActionDto */ export interface AlgoliaRuleActionDto extends RuleActionDto { /** * The application ID. * @type {string} * @memberof AlgoliaRuleActionDto */ appId: string; /** * The API key to grant access to Squidex. * @type {string} * @memberof AlgoliaRuleActionDto */ apiKey: string; /** * The name of the index. * @type {string} * @memberof AlgoliaRuleActionDto */ indexName: string; /** * The optional custom document. * @type {string} * @memberof AlgoliaRuleActionDto */ document?: string | null; /** * The condition when to delete the entry. * @type {string} * @memberof AlgoliaRuleActionDto */ _delete?: string | null; } /** * Check if a given object implements the AlgoliaRuleActionDto interface. */ export declare function instanceOfAlgoliaRuleActionDto(value: any): value is AlgoliaRuleActionDto; export declare function AlgoliaRuleActionDtoFromJSON(json: any): AlgoliaRuleActionDto; export declare function AlgoliaRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): AlgoliaRuleActionDto; export declare function AlgoliaRuleActionDtoToJSON(value?: AlgoliaRuleActionDto | null, _ignoreDiscriminator?: boolean): any;