/** * 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. */ /** * An operand that is a function. See [Advanced searching - functions reference](https://confluence.atlassian.com/x/dwiiLQ) for more information about JQL functions. * @export * @interface FunctionOperand */ export interface FunctionOperand { /** * The name of the function. * @type {string} * @memberof FunctionOperand */ _function: string; /** * The list of function arguments. * @type {Array} * @memberof FunctionOperand */ arguments?: Array; } export declare function FunctionOperandFromJSON(json: any): FunctionOperand; export declare function FunctionOperandFromJSONTyped(json: any, ignoreDiscriminator: boolean): FunctionOperand; export declare function FunctionOperandToJSON(value?: FunctionOperand): any;