Ravak Configurator
    Preparing search index...

    Interface PriceAPIModel

    interface PriceAPIModel {
        currency: string;
        type: PriceType;
        relative: boolean;
        without_vat?: null | number;
        with_vat?: null | number;
        regular_without_vat?: null | number;
        regular_with_vat?: null | number;
    }
    Index

    Properties

    currency: string

    Currency code

    type: PriceType
    relative: boolean

    If TRUE, it's price increment/decrement - should be displayed with sign

    without_vat?: null | number

    float

    with_vat?: null | number

    float

    regular_without_vat?: null | number

    float

    regular_with_vat?: null | number

    float