Type Alias ProductDto

ProductDto: {
    locationId: string;
    name: string;
    description?: string;
    productType: ProductType;
    image?: string;
    statementDescriptor?: string;
    availableInStore?: boolean;
    medias?: ProductMedia[];
    variants: ProductVariant[];
}

Type declaration

  • locationId: string
  • name: string
  • Optionaldescription?: string
  • productType: ProductType
  • Optionalimage?: string
  • OptionalstatementDescriptor?: string
  • OptionalavailableInStore?: boolean
  • Optionalmedias?: ProductMedia[]
  • variants: ProductVariant[]