/** * 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. */ /** * Details of functions that can be used in advanced searches. * @export * @interface FunctionReferenceData */ export interface FunctionReferenceData { /** * The display name of the function. * @type {string} * @memberof FunctionReferenceData */ displayName?: string; /** * The data types returned by the function. * @type {Array} * @memberof FunctionReferenceData */ types?: Array; /** * Indicates whether the function can take a list of arguments. * @type {string} * @memberof FunctionReferenceData */ isList?: FunctionReferenceDataIsListEnum; /** * The function identifier. * @type {string} * @memberof FunctionReferenceData */ value?: string; } export declare function FunctionReferenceDataFromJSON(json: any): FunctionReferenceData; export declare function FunctionReferenceDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): FunctionReferenceData; export declare function FunctionReferenceDataToJSON(value?: FunctionReferenceData): any; /** * @export * @enum {string} */ export declare enum FunctionReferenceDataIsListEnum { True = "true", False = "false" }