/** Count of a version's unresolved issues. */
export interface VersionUnresolvedIssuesCount {
  /** The URL of these count details. */
  self?: string;
  /** Count of unresolved issues. */
  issuesUnresolvedCount?: number;
  /** Count of issues. */
  issuesCount?: number;
}
