/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { remap as remap$ } from "../../lib/primitives.js"; export type CreateRequestBody6 = { incidentId: string; userId: string; }; /** @internal */ export const CreateRequestBody6$inboundSchema: z.ZodType< CreateRequestBody6, z.ZodTypeDef, unknown > = z.object({ incident_id: z.string(), user_id: z.string(), }).transform((v) => { return remap$(v, { "incident_id": "incidentId", "user_id": "userId", }); }); /** @internal */ export type CreateRequestBody6$Outbound = { incident_id: string; user_id: string; }; /** @internal */ export const CreateRequestBody6$outboundSchema: z.ZodType< CreateRequestBody6$Outbound, z.ZodTypeDef, CreateRequestBody6 > = z.object({ incidentId: z.string(), userId: z.string(), }).transform((v) => { return remap$(v, { incidentId: "incident_id", userId: "user_id", }); }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace CreateRequestBody6$ { /** @deprecated use `CreateRequestBody6$inboundSchema` instead. */ export const inboundSchema = CreateRequestBody6$inboundSchema; /** @deprecated use `CreateRequestBody6$outboundSchema` instead. */ export const outboundSchema = CreateRequestBody6$outboundSchema; /** @deprecated use `CreateRequestBody6$Outbound` instead. */ export type Outbound = CreateRequestBody6$Outbound; }