@nosto/preact
    Preparing search index...

    Interface ShopifyVariant

    Shopify product variant data structure.

    interface ShopifyVariant {
        available: boolean;
        barcode: string;
        compare_at_price: null | number;
        featured_image: null | ShopifyImage;
        featured_media: ShopifyMedia;
        id: number;
        inventory_management: string;
        name: string;
        option1: null | string;
        option2: null | string;
        option3: null | string;
        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: null | number
    featured_image: null | ShopifyImage
    featured_media: ShopifyMedia
    id: number
    inventory_management: string
    name: string
    option1: null | string
    option2: null | string
    option3: null | string
    options: string[]
    price: number
    public_title: string
    requires_shipping: boolean
    sku: string
    taxable: boolean
    title: string
    weight: number