/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: cc0515b58317 */ import * as z from "zod/v3"; /** * Describes the request body of the /debug/{datasource}/user API call */ export type DebugUserRequest = { /** * Email ID of the user to get the status for */ email: string; }; /** @internal */ export type DebugUserRequest$Outbound = { email: string; }; /** @internal */ export const DebugUserRequest$outboundSchema: z.ZodType< DebugUserRequest$Outbound, z.ZodTypeDef, DebugUserRequest > = z.object({ email: z.string(), }); export function debugUserRequestToJSON( debugUserRequest: DebugUserRequest, ): string { return JSON.stringify( DebugUserRequest$outboundSchema.parse(debugUserRequest), ); }