Type alias Product

Product: Omit<<internal>.Product, "productables"> & {
    authors?: API.User[] | null;
    available_quantity: number;
    buyable?: boolean;
    created_at?: string | null;
    end_date?: string;
    fields?: {
        in_app_purchase_ids?: {
            revenuecat?: {
                app_store?: string;
                play_store?: string;
            };
        };
    };
    gross_price: number;
    id?: string;
    is_active?: boolean;
    name?: string;
    owned?: boolean;
    owned_quantity: number;
    poster_path?: string | null;
    poster_url?: string;
    productables?: ProductItems[] | null;
    related_products?: API.Product[];
    sold_quantity: number;
    subscription_duration?: number;
    subscription_period?: string;
    tags?: string[];
    updated_at?: string | null;
}

Generated using TypeDoc