ChemPare Documentation - v0.0.0
    Preparing search index...

    Interface SynthetikaProduct

    interface SynthetikaProduct {
        id: number;
        variants?: Partial<SynthetikaProduct>[];
        name: string;
        can_buy: boolean;
        ean: string;
        code: string;
        package: string;
        unit: { name: string; floating_point: boolean };
        rate: number;
        votes: number;
        stockId: number;
        url: string;
        category: { name: string; id: number };
        availability: { name: string };
        visibility: { status: number; cart_status: number; search_status: number };
        delivery: { name: string; hours: string };
        price: { gross: SynthetikaProductPrice; net: SynthetikaProductPrice };
        productExists30DaysBeforePromotion: boolean;
        weight: { weight_float: number; weight: string };
        producer: { name: string; id: number; img: string };
        newProduct: boolean;
        shortDescription: string;
        main_image: string;
        main_image_filename: string;
        historical_lowest_price: string;
        net_historical_lowest_price: string;
    }
    Index

    Properties

    id: number
    name: string
    can_buy: boolean
    ean: string
    code: string
    package: string
    unit: { name: string; floating_point: boolean }
    rate: number
    votes: number
    stockId: number
    url: string
    category: { name: string; id: number }
    availability: { name: string }
    visibility: { status: number; cart_status: number; search_status: number }
    delivery: { name: string; hours: string }
    productExists30DaysBeforePromotion: boolean
    weight: { weight_float: number; weight: string }
    producer: { name: string; id: number; img: string }
    newProduct: boolean
    shortDescription: string
    main_image: string
    main_image_filename: string
    historical_lowest_price: string
    net_historical_lowest_price: string