/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type SessionsWorkingGetRequest = { sessionId: string; agentWallet: string; }; /** @internal */ export type SessionsWorkingGetRequest$Outbound = { sessionId: string; agentWallet: string; }; /** @internal */ export const SessionsWorkingGetRequest$outboundSchema: z.ZodMiniType< SessionsWorkingGetRequest$Outbound, SessionsWorkingGetRequest > = z.object({ sessionId: z.string(), agentWallet: z.string(), }); export function sessionsWorkingGetRequestToJSON( sessionsWorkingGetRequest: SessionsWorkingGetRequest, ): string { return JSON.stringify( SessionsWorkingGetRequest$outboundSchema.parse(sessionsWorkingGetRequest), ); }