Represents a usage of an entity by a project ID and related issue type IDs.

interface SimpleUsage {
    issueTypeIds: string[];
    projectId: string;
}

Properties

issueTypeIds: string[]

The issue type IDs for the usage.

projectId: string

The project ID for the usage.