Interface ModelConverterInputParams

Defines the configuration for a single input in a conversion pipeline.

interface ModelConverterInputParams {
    dataModel?: string;
    loader: string;
    options?: { [key: string]: any };
    sceneModel?: string;
}

Properties

dataModel?: string

Optional ID of the DataModel into which the loader will import semantic data. The DataModel can be shared with other inputs and outputs, and will be created if not already existing.

loader: string

Specifies the key of a ModelLoader defined in ModelConverterParams.loaders, which will be used by the pipeline to read the source file.

options?: { [key: string]: any }

Optional set of key-value pairs for loader-specific configuration.

sceneModel?: string

Optional ID of the SceneModel into which the loader will import scene-related data. The SceneModel can be shared with other inputs and outputs, and will be created if not already existing.