interface ProductBasicInfo {
    additionalInformation: string;
    addressLine1?: string;
    addressLine2?: string;
    addressLine3?: string;
    attributes?: ProductAttribute[];
    createdAt: Date;
    description: string;
    dimensions: string;
    features: NameValuePair[];
    geoCoordinatesField?: GeoCoordinatesField;
    isPromoted?: boolean;
    name: string;
    postalCode?: string;
    publication: Partial<ProductPublication>;
    tags: string[];
    updatedAt: Date;
    variantNote: string;
}

Hierarchy (view full)

Implemented by

Properties

additionalInformation: string
addressLine1?: string
addressLine2?: string
addressLine3?: string
attributes?: ProductAttribute[]
createdAt: Date
description: string
dimensions: string
features: NameValuePair[]
geoCoordinatesField?: GeoCoordinatesField
isPromoted?: boolean
name: string
postalCode?: string
publication: Partial<ProductPublication>
tags: string[]
updatedAt: Date
variantNote: string

Generated using TypeDoc