/** Details of an issue type screen scheme. */
export interface IssueTypeScreenSchemeUpdateDetails {
  /** The name of the issue type screen scheme. The name must be unique. The maximum length is 255 characters. */
  name?: string;
  /** The description of the issue type screen scheme. The maximum length is 255 characters. */
  description?: string;
}
