interface IssueFieldOptionCreateBean {
    config?: IssueFieldOptionConfiguration;
    properties?: {
        [key: string]: unknown;
    };
    value: string;
}

Hierarchy

  • Record<string, unknown>
    • IssueFieldOptionCreateBean

Properties

Details of the projects the option is available in.

properties?: {
    [key: string]: unknown;
}

The properties of the option as arbitrary key-value pairs. These properties can be searched using JQL, if the extractions (see https://developer.atlassian.com/cloud/jira/platform/modules/issue-field-option-property-index/) are defined in the descriptor for the issue field module.

value: string

The option's name, which is displayed in Jira.