/** * 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 user-provided value. * @export * @interface ValueOperand */ export interface ValueOperand { /** * The operand value. * @type {string} * @memberof ValueOperand */ value: string; } export declare function ValueOperandFromJSON(json: any): ValueOperand; export declare function ValueOperandFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValueOperand; export declare function ValueOperandToJSON(value?: ValueOperand): any;