fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
48 lines • 1.09 kB
TypeScript
/**
* 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 './query-predicate-value';
/**
*
* @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"
}
//# sourceMappingURL=query-predicate.d.ts.map