Type Alias PaymentProduct

PaymentProduct: {
    _id: string;
    description?: string;
    variants?: PaymentsProductVariantSchema[];
    medias?: PaymentProductMediaDto[];
    locationId: string;
    name: string;
    productType: string;
    availableInStore?: boolean;
    userId?: string;
    createdAt: string;
    updatedAt: string;
    statementDescriptor?: string;
    image?: string;
    collectionIds?: string[];
    isTaxesEnabled?: boolean;
    taxes?: string[];
    isLabelEnabled?: boolean;
    label?: ProductLabel;
    slug?: string;
    seo?: ProductSEO;
}

Type declaration

  • _id: string
  • Optionaldescription?: string
  • Optionalvariants?: PaymentsProductVariantSchema[]
  • Optionalmedias?: PaymentProductMediaDto[]
  • locationId: string
  • name: string
  • productType: string
  • OptionalavailableInStore?: boolean
  • OptionaluserId?: string
  • createdAt: string
  • updatedAt: string
  • OptionalstatementDescriptor?: string
  • Optionalimage?: string
  • OptionalcollectionIds?: string[]
  • OptionalisTaxesEnabled?: boolean
  • Optionaltaxes?: string[]
  • OptionalisLabelEnabled?: boolean
  • Optionallabel?: ProductLabel
  • Optionalslug?: string
  • Optionalseo?: ProductSEO