/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 305346fb9e13 */ import * as z from "zod/v3"; export type GetChatApplicationRequest = { /** * The id of the Chat application to be retrieved. */ id: string; }; /** @internal */ export type GetChatApplicationRequest$Outbound = { id: string; }; /** @internal */ export const GetChatApplicationRequest$outboundSchema: z.ZodType< GetChatApplicationRequest$Outbound, z.ZodTypeDef, GetChatApplicationRequest > = z.object({ id: z.string(), }); export function getChatApplicationRequestToJSON( getChatApplicationRequest: GetChatApplicationRequest, ): string { return JSON.stringify( GetChatApplicationRequest$outboundSchema.parse(getChatApplicationRequest), ); }