/** A screen tab field. */
export interface ScreenableField {
  /** The ID of the screen tab field. */
  id?: string;
  /** The name of the screen tab field. Required on create and update. The maximum length is 255 characters. */
  name?: string;
}
