/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type ReportDto = { /** * URL to the report */ url: string; }; /** @internal */ export const ReportDto$inboundSchema: z.ZodType = z.object({ url: z.string(), }); /** @internal */ export type ReportDto$Outbound = { url: string; }; /** @internal */ export const ReportDto$outboundSchema: z.ZodType = z.object({ url: z.string(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace ReportDto$ { /** @deprecated use `ReportDto$inboundSchema` instead. */ export const inboundSchema = ReportDto$inboundSchema; /** @deprecated use `ReportDto$outboundSchema` instead. */ export const outboundSchema = ReportDto$outboundSchema; /** @deprecated use `ReportDto$Outbound` instead. */ export type Outbound = ReportDto$Outbound; }