/** * 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 CellValueOperator: { readonly EQUALS: "EQUALS"; readonly NOT_EQUALS: "NOT_EQUALS"; readonly GREATER_THAN: "GREATER_THAN"; readonly LESS_THAN: "LESS_THAN"; readonly GREATER_THAN_OR_EQUALS: "GREATER_THAN_OR_EQUALS"; readonly LESS_THAN_OR_EQUALS: "LESS_THAN_OR_EQUALS"; readonly IN: "IN"; readonly NOT_IN: "NOT_IN"; readonly LIKE: "LIKE"; readonly NOT_LIKE: "NOT_LIKE"; readonly IS_NULL: "IS_NULL"; readonly IS_NOT_NULL: "IS_NOT_NULL"; readonly IS_UNDEFINED: "IS_UNDEFINED"; readonly IS_DEFINED: "IS_DEFINED"; }; export type CellValueOperator = typeof CellValueOperator[keyof typeof CellValueOperator]; export declare function instanceOfCellValueOperator(value: any): boolean; export declare function CellValueOperatorFromJSON(json: any): CellValueOperator; export declare function CellValueOperatorFromJSONTyped(json: any, ignoreDiscriminator: boolean): CellValueOperator; export declare function CellValueOperatorToJSON(value?: CellValueOperator | null): any; export declare function CellValueOperatorToJSONTyped(value: any, ignoreDiscriminator: boolean): CellValueOperator;