/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { JqlQueryFieldAsResponse } from "../definitions/JqlQueryFieldAsResponse"; import { JqlQueryClauseOperandAsResponse } from "../definitions/JqlQueryClauseOperandAsResponse"; export interface FieldValueClauseAsResponse { field: JqlQueryFieldAsResponse; operand: JqlQueryClauseOperandAsResponse; /** * The operator between the field and operand. */ operator: "=" | "!=" | ">" | "<" | ">=" | "<=" | "in" | "not in" | "~" | "~=" | "is" | "is not"; } //# sourceMappingURL=FieldValueClauseAsResponse.d.ts.map