@coursebuilder/core
Version:
Core package for Course Builder
34 lines (31 loc) • 909 B
text/typescript
import { z } from 'zod';
declare const merchantChargeSchema: z.ZodObject<{
id: z.ZodString;
status: z.ZodDefault<z.ZodNumber>;
identifier: z.ZodString;
userId: z.ZodString;
merchantAccountId: z.ZodString;
merchantProductId: z.ZodString;
createdAt: z.ZodNullable<z.ZodDate>;
merchantCustomerId: z.ZodString;
}, "strip", z.ZodTypeAny, {
id: string;
createdAt: Date | null;
status: number;
identifier: string;
merchantAccountId: string;
userId: string;
merchantProductId: string;
merchantCustomerId: string;
}, {
id: string;
createdAt: Date | null;
identifier: string;
merchantAccountId: string;
userId: string;
merchantProductId: string;
merchantCustomerId: string;
status?: number | undefined;
}>;
type MerchantCharge = z.infer<typeof merchantChargeSchema>;
export { type MerchantCharge, merchantChargeSchema };