A default value associated with an issue type within a context.

interface IssueTypeDefaultValue {
    isAnyIssueType?: null | boolean;
    issueTypeId?: null | string;
    value?: CustomFieldContextDefaultValue;
}

Properties

isAnyIssueType?: null | boolean

True when this default value applies to every issue type covered by the context (no specific issue type). Only present when true; omitted otherwise.

issueTypeId?: null | string

The ID of the issue type this default value applies to. Null when isAnyIssueType is true.