The mapping of old to new status ID for a specific project and issue type.

interface StatusMappingDTO {
    issueTypeId: string;
    projectId: string;
    statusMigrations: StatusMigration[];
}

Properties

issueTypeId: string

The issue type for the status mapping.

projectId: string

The project for the status mapping.

statusMigrations: StatusMigration[]

The list of old and new status ID mappings for the specified project and issue type.