Variable SimpleOfferLineSchemaConst
SimpleOfferLineSchema: ZodObject<
{
id: ZodOptional<ZodString>;
description: ZodString;
quantity: ZodNumber;
unitPrice: ZodNumber;
totalPrice: ZodNumber;
taxId: ZodOptional<ZodString>;
taxRate: ZodNumber;
taxAmount: ZodNumber;
notes: ZodOptional<ZodString>;
sequence: ZodNumber;
unitOfMeasureId: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
id?: string;
description: string;
quantity: number;
unitPrice: number;
totalPrice: number;
taxId?: string;
taxRate: number;
taxAmount: number;
notes?: string;
sequence: number;
unitOfMeasureId?: string;
},
{
id?: string;
description: string;
quantity: number;
unitPrice: number;
totalPrice: number;
taxId?: string;
taxRate: number;
taxAmount: number;
notes?: string;
sequence: number;
unitOfMeasureId?: string;
},
> = ...