/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface ScreenDetails { /** * The description of the screen. The maximum length is 255 characters. */ description?: string; /** * The name of the screen. The name must be unique. The maximum length is 255 characters. */ name: string; } //# sourceMappingURL=ScreenDetails.d.ts.map