An operand that is a user-provided value.

interface ValueOperand {
    encodedValue?: string;
    value: string;
}

Hierarchy

  • Record<string, unknown>
    • ValueOperand

Properties

Properties

encodedValue?: string

Encoded value, which can be used directly in a JQL query.

value: string

The operand value.