interface Screen {
    type: Integration;
    key?: string;
    blocks: ScreenBlock[];
    id: string;
    name: string;
    state?: WorkspaceElementState;
    errors?: ErrorData[];
}

Hierarchy

Properties

key?: string
blocks: ScreenBlock[]
id: string
name: string
errors?: ErrorData[]