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