/** * 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, JqlQueryField } from './'; /** * A clause that asserts the current value of a field. For example, `summary ~ test`. * @export * @interface FieldValueClause */ export interface FieldValueClause { /** * * @type {JqlQueryField} * @memberof FieldValueClause */ field: JqlQueryField; /** * The operator between the field and operand. * @type {string} * @memberof FieldValueClause */ operator: string; /** * * @type {JqlQueryClauseOperand} * @memberof FieldValueClause */ operand: JqlQueryClauseOperand; } export declare function FieldValueClauseFromJSON(json: any): FieldValueClause; export declare function FieldValueClauseFromJSONTyped(json: any, ignoreDiscriminator: boolean): FieldValueClause; export declare function FieldValueClauseToJSON(value?: FieldValueClause): any;