@wiqotech/nestjs-digiflazz
Version:
NestJS Digiflazz SDK Module
19 lines (18 loc) • 519 B
TypeScript
import { z } from 'zod';
export declare const PaymentChargeSchema: z.ZodObject<{
refNo: z.ZodString;
skuCode: z.ZodString;
refId: z.ZodString;
max_price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
}, "strip", z.ZodTypeAny, {
refNo: string;
skuCode: string;
refId: string;
max_price?: number | null | undefined;
}, {
refNo: string;
skuCode: string;
refId: string;
max_price?: number | null | undefined;
}>;
export type PaymentCharge = z.infer<typeof PaymentChargeSchema>;