/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface UpdateScreenTypes { /** * The ID of the create screen. To remove the screen association, pass a null. */ create?: string; /** * The ID of the default screen. When specified, must include a screen ID as a default screen is required. */ default?: string; /** * The ID of the edit screen. To remove the screen association, pass a null. */ edit?: string; /** * The ID of the view screen. To remove the screen association, pass a null. */ view?: string; } //# sourceMappingURL=UpdateScreenTypes.d.ts.map