41 lines
1.7 KiB
TypeScript
41 lines
1.7 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const ServiceLineTransactionMinAggregateInputObjectSchema: z.ZodType<Prisma.ServiceLineTransactionMinAggregateInputType>;
|
|
export declare const ServiceLineTransactionMinAggregateInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodLiteral<true>>;
|
|
paymentId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
serviceLineId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
transactionId: z.ZodOptional<z.ZodLiteral<true>>;
|
|
paidAmount: z.ZodOptional<z.ZodLiteral<true>>;
|
|
adjustedAmount: z.ZodOptional<z.ZodLiteral<true>>;
|
|
method: z.ZodOptional<z.ZodLiteral<true>>;
|
|
receivedDate: z.ZodOptional<z.ZodLiteral<true>>;
|
|
payerName: z.ZodOptional<z.ZodLiteral<true>>;
|
|
notes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
createdAt: z.ZodOptional<z.ZodLiteral<true>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: true | undefined;
|
|
id?: true | undefined;
|
|
notes?: true | undefined;
|
|
paymentId?: true | undefined;
|
|
transactionId?: true | undefined;
|
|
paidAmount?: true | undefined;
|
|
adjustedAmount?: true | undefined;
|
|
method?: true | undefined;
|
|
receivedDate?: true | undefined;
|
|
payerName?: true | undefined;
|
|
serviceLineId?: true | undefined;
|
|
}, {
|
|
createdAt?: true | undefined;
|
|
id?: true | undefined;
|
|
notes?: true | undefined;
|
|
paymentId?: true | undefined;
|
|
transactionId?: true | undefined;
|
|
paidAmount?: true | undefined;
|
|
adjustedAmount?: true | undefined;
|
|
method?: true | undefined;
|
|
receivedDate?: true | undefined;
|
|
payerName?: true | undefined;
|
|
serviceLineId?: true | undefined;
|
|
}>;
|
|
//# sourceMappingURL=ServiceLineTransactionMinAggregateInput.schema.d.ts.map
|