/** Details of an issue resolution. */
export interface Resolution {
  /** The URL of the issue resolution. */
  self?: string;
  /** The ID of the issue resolution. */
  id?: string;
  /** The description of the issue resolution. */
  description?: string;
  /** The name of the issue resolution. */
  name?: string;
  iconUrl?: string;
  default?: boolean;
}
