Types > StorefrontCustomFieldObjects
Storefront APITypesStorefrontCustomFieldObjects
StorefrontCustomFieldObjects

Description

Custom field objects extracted and ready for expansion

Translatable

Fields

brands: [StorefrontBrand]


categories: [StorefrontCategory]


content_blocks: [StorefrontContentBlock]


files: [StorefrontFile]


products: [StorefrontProduct]


variants: [StorefrontProductVariant]


Used By

Types

StorefrontBrand, StorefrontCategory, StorefrontContentBlock, StorefrontMenu, StorefrontProduct

Preview (typescript)

interface StorefrontCustomFieldObjects {
brands?: (StorefrontBrand | null)[]
categories?: (StorefrontCategory | null)[]
content_blocks?: (StorefrontContentBlock | null)[]
files?: (StorefrontFile | null)[]
products?: (StorefrontProduct | null)[]
variants?: (StorefrontProductVariant | null)[]
}