/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { JqlQueryClauseOperand } from './'; /** * A time predicate for a temporal JQL clause. * @export * @interface JqlQueryClauseTimePredicate */ export interface JqlQueryClauseTimePredicate { /** * The operator between the field and the operand. * @type {string} * @memberof JqlQueryClauseTimePredicate */ operator: JqlQueryClauseTimePredicateOperatorEnum; /** * * @type {JqlQueryClauseOperand} * @memberof JqlQueryClauseTimePredicate */ operand: JqlQueryClauseOperand; } export declare function JqlQueryClauseTimePredicateFromJSON(json: any): JqlQueryClauseTimePredicate; export declare function JqlQueryClauseTimePredicateFromJSONTyped(json: any, ignoreDiscriminator: boolean): JqlQueryClauseTimePredicate; export declare function JqlQueryClauseTimePredicateToJSON(value?: JqlQueryClauseTimePredicate): any; /** * @export * @enum {string} */ export declare enum JqlQueryClauseTimePredicateOperatorEnum { Before = "before", After = "after", From = "from", To = "to", On = "on", During = "during", By = "by" }