/** A project and issueType ID pair that identifies a status mapping. */
export interface ProjectAndIssueTypePair {
  /** The ID of the issue type. */
  issueTypeId: string;
  /** The ID of the project. */
  projectId: string;
}
