TrackingSettingData

Type alias TrackingSettingData

TrackingSettingData: {
    currentValue: number;
    description: string;
    displayName: string;
    key: string;
    maxValue: number;
    minValue: number;
    showQualityThreshold: boolean;
    stepSize: number;
}

Data type describing the settings of the model tracker.

Type declaration

  • currentValue: number

    The current value of the setting.

  • description: string

    The description of the setting.

  • displayName: string

    The displayed name of the setting.

  • key: string

    The key of the setting.

  • maxValue: number

    The maximum value of the setting.

  • minValue: number

    The minimum value of the setting.

  • showQualityThreshold: boolean

    Whether to show the quality threshold or not.

  • stepSize: number

    The step size of the setting.