/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { BarcodeTemplateSchema } from './BarcodeTemplateSchema'; import type { ProductImageSchema } from './ProductImageSchema'; export type ProductCreateRequest = { name: string; article?: (string | null); factoryArticle?: (string | null); clientId: number; barcodes: Array; barcodeTemplate?: (BarcodeTemplateSchema | null); brand?: (string | null); color?: (string | null); composition?: (string | null); size?: (string | null); additionalInfo?: (string | null); imageUrl?: (string | null); images?: (Array | null); };