63 lines
1.8 KiB
TypeScript
63 lines
1.8 KiB
TypeScript
import * as z from 'zod';
|
|
export declare const PaymentCreateResultSchema: z.ZodObject<{
|
|
id: z.ZodNumber;
|
|
claimId: z.ZodOptional<z.ZodNumber>;
|
|
patientId: z.ZodNumber;
|
|
userId: z.ZodNumber;
|
|
updatedById: z.ZodOptional<z.ZodNumber>;
|
|
totalBilled: z.ZodNumber;
|
|
totalPaid: z.ZodNumber;
|
|
totalAdjusted: z.ZodNumber;
|
|
totalDue: z.ZodNumber;
|
|
status: z.ZodUnknown;
|
|
notes: z.ZodOptional<z.ZodString>;
|
|
icn: z.ZodOptional<z.ZodString>;
|
|
createdAt: z.ZodDate;
|
|
updatedAt: z.ZodDate;
|
|
claim: z.ZodOptional<z.ZodUnknown>;
|
|
patient: z.ZodUnknown;
|
|
updatedBy: z.ZodOptional<z.ZodUnknown>;
|
|
serviceLineTransactions: z.ZodArray<z.ZodUnknown, "many">;
|
|
serviceLines: z.ZodArray<z.ZodUnknown, "many">;
|
|
}, "strip", z.ZodTypeAny, {
|
|
createdAt: Date;
|
|
id: number;
|
|
userId: number;
|
|
patientId: number;
|
|
totalBilled: number;
|
|
totalPaid: number;
|
|
totalAdjusted: number;
|
|
totalDue: number;
|
|
serviceLineTransactions: unknown[];
|
|
updatedAt: Date;
|
|
serviceLines: unknown[];
|
|
status?: unknown;
|
|
patient?: unknown;
|
|
notes?: string | undefined;
|
|
claimId?: number | undefined;
|
|
claim?: unknown;
|
|
icn?: string | undefined;
|
|
updatedBy?: unknown;
|
|
updatedById?: number | undefined;
|
|
}, {
|
|
createdAt: Date;
|
|
id: number;
|
|
userId: number;
|
|
patientId: number;
|
|
totalBilled: number;
|
|
totalPaid: number;
|
|
totalAdjusted: number;
|
|
totalDue: number;
|
|
serviceLineTransactions: unknown[];
|
|
updatedAt: Date;
|
|
serviceLines: unknown[];
|
|
status?: unknown;
|
|
patient?: unknown;
|
|
notes?: string | undefined;
|
|
claimId?: number | undefined;
|
|
claim?: unknown;
|
|
icn?: string | undefined;
|
|
updatedBy?: unknown;
|
|
updatedById?: number | undefined;
|
|
}>;
|
|
//# sourceMappingURL=PaymentCreateResult.schema.d.ts.map
|