/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: dcfb5745f607 */ import * as z from "zod/v3"; export type ListAnswersRequest = { /** * The Answer Board Id to list answers on. */ boardId?: number | undefined; }; /** @internal */ export type ListAnswersRequest$Outbound = { boardId?: number | undefined; }; /** @internal */ export const ListAnswersRequest$outboundSchema: z.ZodType< ListAnswersRequest$Outbound, z.ZodTypeDef, ListAnswersRequest > = z.object({ boardId: z.number().int().optional(), }); export function listAnswersRequestToJSON( listAnswersRequest: ListAnswersRequest, ): string { return JSON.stringify( ListAnswersRequest$outboundSchema.parse(listAnswersRequest), ); }