23 lines
740 B
TypeScript
23 lines
740 B
TypeScript
/* 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<string>;
|
|
barcodeTemplate?: (BarcodeTemplateSchema | null);
|
|
brand?: (string | null);
|
|
color?: (string | null);
|
|
composition?: (string | null);
|
|
size?: (string | null);
|
|
additionalInfo?: (string | null);
|
|
imageUrl?: (string | null);
|
|
images?: (Array<ProductImageSchema> | null);
|
|
};
|
|
|