/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { JqlQueryUnitaryOperandAsResponse } from "../definitions/JqlQueryUnitaryOperandAsResponse"; export interface ListOperandAsResponse { /** * Encoded operand, which can be used directly in a JQL query. */ encodedOperand?: string; /** * The list of operand values. */ values: Array; } //# sourceMappingURL=ListOperandAsResponse.d.ts.map