Packages

pify: some helpers to use gleam in your shopify project.

Current section

Files

Jump to
pify include storefront@products_Product.hrl
Raw

include/storefront@products_Product.hrl

-record(product, {
id :: binary(),
handle :: binary(),
available_for_sale :: boolean(),
title :: binary(),
description :: binary(),
description_html :: binary(),
price_range :: storefront@utils:price_range(),
featured_image :: storefront@utils:image(),
seo :: storefront@utils:seo(),
tags :: list(binary()),
updated_at :: binary(),
variants :: list(storefront@utils:product_variant()),
images :: list(storefront@utils:image())
}).