@nosto/preact
    Preparing search index...

    Interface ShopifyVariant

    Shopify product variant data structure.

    interface ShopifyVariant {
        available: boolean;
        barcode: string;
        compare_at_price: number | null;
        featured_image: ShopifyImage | null;
        featured_media: ShopifyMedia;
        id: number;
        inventory_management: string;
        name: string;
        option1: string | null;
        option2: string | null;
        option3: string | null;
        options: string[];
        price: number;
        public_title: string;
        requires_shipping: boolean;
        sku: string;
        taxable: boolean;
        title: string;
        weight: number;
    }
    Index

    Properties

    available: boolean
    barcode: string
    compare_at_price: number | null
    featured_image: ShopifyImage | null
    featured_media: ShopifyMedia
    id: number
    inventory_management: string
    name: string
    option1: string | null
    option2: string | null
    option3: string | null
    options: string[]
    price: number
    public_title: string
    requires_shipping: boolean
    sku: string
    taxable: boolean
    title: string
    weight: number