/** * 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 './'; /** * An operand that is a list of values. * @export * @interface ListOperand */ export interface ListOperand { /** * The list of operand values. * @type {Array} * @memberof ListOperand */ values?: Array; } export declare function ListOperandFromJSON(json: any): ListOperand; export declare function ListOperandFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListOperand; export declare function ListOperandToJSON(value?: ListOperand): any;