29 lines
1.2 KiB
TypeScript
29 lines
1.2 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const ServiceLineAvgAggregateInputObjectSchema: z.ZodType<Prisma.ServiceLineAvgAggregateInputType>;
|
|
export declare const ServiceLineAvgAggregateInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
claimId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
paymentId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
totalBilled: z.ZodOptional<z.ZodLiteral<true>>;
|
|
totalPaid: z.ZodOptional<z.ZodLiteral<true>>;
|
|
totalAdjusted: z.ZodOptional<z.ZodLiteral<true>>;
|
|
totalDue: z.ZodOptional<z.ZodLiteral<true>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: true | undefined;
|
|
claimId?: true | undefined;
|
|
paymentId?: true | undefined;
|
|
totalBilled?: true | undefined;
|
|
totalPaid?: true | undefined;
|
|
totalAdjusted?: true | undefined;
|
|
totalDue?: true | undefined;
|
|
}, {
|
|
id?: true | undefined;
|
|
claimId?: true | undefined;
|
|
paymentId?: true | undefined;
|
|
totalBilled?: true | undefined;
|
|
totalPaid?: true | undefined;
|
|
totalAdjusted?: true | undefined;
|
|
totalDue?: true | undefined;
|
|
}>;
|
|
//# sourceMappingURL=ServiceLineAvgAggregateInput.schema.d.ts.map
|