Classification mapping for classifications in source issues to respective target classification.

interface TargetClassification {
    classifications: {
        [key: string]: string[];
    };
    issueType?: string;
    projectKeyOrId?: string;
}

Properties

classifications: {
    [key: string]: string[];
}

An object with the key as the ID of the target classification and value with the list of the IDs of the current source classifications.

issueType?: string

ID of the source issueType to which issues present in issueIdOrKeys belongs.

projectKeyOrId?: string

ID or key of the source project to which issues present in issueIdOrKeys belongs.