Type Alias MeasurementValue

MeasurementValue: {
    max_value?: string;
    min_value?: string;
    size: string;
    value?: string;
}

The measurement value for a specific size

Type declaration

  • Optionalmax_value?: string

    The upper boundary of the value range (whether this and min_value or value will be present)

  • Optionalmin_value?: string

    The lower boundary of the value range (whether this and max_value or value will be present)

  • size: string

    The size with which the value is associated

  • Optionalvalue?: string

    The single value associated with a size (whether this or min_value and max_value will be present)