export interface SceneUpdate { /** User defined display name of the scene */ displayName?: string; /** Optional detailed description of the scene. Pass `null` to remove. */ description?: string | null; /** Optional parent Id for the scene (UUID). Pass `null` to remove. */ parentId?: string | null; /** * Optional list of tag Ids to apply to this scene. * Tags must exist in the same iTwin as the scene itself. * * Replaces the full set of scene's tags. */ tagIds?: string[]; }