/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 9d06b04e4888 */ import * as z from "zod/v3"; export type GetChatFilesRequest = { /** * IDs of files to fetch. */ fileIds: Array; }; /** @internal */ export type GetChatFilesRequest$Outbound = { fileIds: Array; }; /** @internal */ export const GetChatFilesRequest$outboundSchema: z.ZodType< GetChatFilesRequest$Outbound, z.ZodTypeDef, GetChatFilesRequest > = z.object({ fileIds: z.array(z.string()), }); export function getChatFilesRequestToJSON( getChatFilesRequest: GetChatFilesRequest, ): string { return JSON.stringify( GetChatFilesRequest$outboundSchema.parse(getChatFilesRequest), ); }