/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const SearchQueryType: { readonly SIMPLE_QUERY_STRING: "SIMPLE_QUERY_STRING"; readonly MATCH: "MATCH"; readonly MULTI_MATCH: "MULTI_MATCH"; readonly MATCH_PHRASE: "MATCH_PHRASE"; readonly PREFIX: "PREFIX"; readonly WILDCARD: "WILDCARD"; readonly MATCH_ALL: "MATCH_ALL"; }; export type SearchQueryType = typeof SearchQueryType[keyof typeof SearchQueryType]; export declare function instanceOfSearchQueryType(value: any): boolean; export declare function SearchQueryTypeFromJSON(json: any): SearchQueryType; export declare function SearchQueryTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchQueryType; export declare function SearchQueryTypeToJSON(value?: SearchQueryType | null): any; export declare function SearchQueryTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): SearchQueryType;