/** A screen tab. */
export interface ScreenableTab {
  /** The ID of the screen tab. */
  id?: number;
  /** The name of the screen tab. The maximum length is 255 characters. */
  name: string;
}
