UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

57 lines 1.64 kB
/** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 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 { QueryPredicateValue } from './QueryPredicateValue'; /** * * @export * @interface QueryPredicate */ export interface QueryPredicate { /** * * @type {string} * @memberof QueryPredicate */ key: string; /** * * @type {QueryPredicateValue} * @memberof QueryPredicate */ value: QueryPredicateValue; /** * * @type {string} * @memberof QueryPredicate */ operator: QueryPredicateOperatorEnum; } /** * @export * @enum {string} */ export declare enum QueryPredicateOperatorEnum { eq = "eq", not_eq = "not_eq", greater_than = "greater_than", less_than = "less_than", contains = "contains" } /** * Check if a given object implements the QueryPredicate interface. */ export declare function instanceOfQueryPredicate(value: object): value is QueryPredicate; export declare function QueryPredicateFromJSON(json: any): QueryPredicate; export declare function QueryPredicateFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryPredicate; export declare function QueryPredicateToJSON(json: any): QueryPredicate; export declare function QueryPredicateToJSONTyped(value?: QueryPredicate | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=QueryPredicate.d.ts.map