import { z } from "zod/v4"; export const PaymentMethodRefSchema = z.object({ id: z.uuid(), description: z.string(), }); export type PaymentMethodRefDTO = z.infer;