interface ProductTypeDraft {
    attributes?: AttributeDefinitionDraft[];
    description: string;
    key?: string;
    name: string;
}

Properties

Attributes to specify for the ProductType. Products of this ProductType have these Attributes available on their ProductVariants.

description: string

Description of the ProductType.

key?: string

User-defined unique identifier for the ProductType.

name: string

Name of the ProductType.

Generated using TypeDoc