Variable SimpleOrderLineSchemaConst
SimpleOrderLineSchema: ZodObject<
{
id: ZodOptional<ZodString>;
finishedProductId: ZodOptional<ZodString>;
description: ZodString;
quantity: ZodNumber;
unitPrice: ZodNumber;
totalPrice: ZodNumber;
taxId: ZodOptional<ZodString>;
taxRate: ZodNumber;
taxAmount: ZodNumber;
deliveredQuantity: ZodNumber;
remainingQuantity: ZodNumber;
notes: ZodOptional<ZodString>;
sequence: ZodNumber;
},
"strip",
ZodTypeAny,
{
id?: string;
finishedProductId?: string;
description: string;
quantity: number;
unitPrice: number;
totalPrice: number;
taxId?: string;
taxRate: number;
taxAmount: number;
deliveredQuantity: number;
remainingQuantity: number;
notes?: string;
sequence: number;
},
{
id?: string;
finishedProductId?: string;
description: string;
quantity: number;
unitPrice: number;
totalPrice: number;
taxId?: string;
taxRate: number;
taxAmount: number;
deliveredQuantity: number;
remainingQuantity: number;
notes?: string;
sequence: number;
},
> = ...