/** * 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 { JqlQueryUnitaryOperand } from './'; /** * Details of an operand in a JQL clause. * @export * @interface JqlQueryClauseOperand */ export interface JqlQueryClauseOperand { /** * The list of operand values. * @type {Array} * @memberof JqlQueryClauseOperand */ values?: Array; /** * The operand value. * @type {string} * @memberof JqlQueryClauseOperand */ value: string; /** * The name of the function. * @type {string} * @memberof JqlQueryClauseOperand */ _function: string; /** * The list of function arguments. * @type {Array} * @memberof JqlQueryClauseOperand */ arguments?: Array; /** * The keyword that is the operand value. * @type {string} * @memberof JqlQueryClauseOperand */ keyword: JqlQueryClauseOperandKeywordEnum; } export declare function JqlQueryClauseOperandFromJSON(json: any): JqlQueryClauseOperand; export declare function JqlQueryClauseOperandFromJSONTyped(json: any, ignoreDiscriminator: boolean): JqlQueryClauseOperand; export declare function JqlQueryClauseOperandToJSON(value?: JqlQueryClauseOperand): any; /** * @export * @enum {string} */ export declare enum JqlQueryClauseOperandKeywordEnum { Empty = "empty" }