ChemPal Documentation - v1.6.0
    Preparing search index...

    Interface ScienceLabAttributeData

    The data payload of the BigCommerce remote/v1/product-attributes/{id} response, describing the selected variant (attribute combination). Every field is optional; the supplier only reads the price and stock flags.

    interface ScienceLabAttributeData {
        sku?: string;
        mpn?: string;
        instock?: boolean;
        purchasable?: boolean;
        price?: {
            without_tax?: ScienceLabPrice;
            with_tax?: ScienceLabPrice;
            tax_label?: string;
        };
    }
    Index

    Properties

    sku?: string
    mpn?: string
    instock?: boolean
    purchasable?: boolean
    price?: {
        without_tax?: ScienceLabPrice;
        with_tax?: ScienceLabPrice;
        tax_label?: string;
    }

    Price of the selected variant, before tax.