Represents a collection of holders for the dispenser or a specific assembly.

Provides default indexing to allow for grouping of holders by nozzle.

interface HolderContainerModel<T> {
    id: string;
    holders: IKosModelContainer<HolderModel<any>>;
    updateModel(options): void;
}

Type Parameters

  • T extends object = any

Hierarchy

  • IKosDataModel
    • HolderContainerModel

Properties

Methods

Properties

id: string

the unique identifier for the model

holders: IKosModelContainer<HolderModel<any>>

the collection of holder models

Methods

  • convenience method to update the holder container based on the options

    Parameters

    • options: HolderContainerOptions

    Returns void