/** A status category. */
export interface StatusCategory {
  /** The name of the color used to represent the status category. */
  colorName: string;
  /** The ID of the status category. */
  id: number;
  /** The key of the status category. */
  key: string;
  /** The name of the status category. */
  name: string;
  /** The URL of the status category. */
  self: string;
}
