/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: bf513d105874 */ import * as z from "zod/v3"; export type ChatZeroStateSuggestionOptions = { /** * The Chat Application ID this feed request should be scoped to. Empty means there is no Chat Application ID.. */ applicationId?: string | undefined; }; /** @internal */ export type ChatZeroStateSuggestionOptions$Outbound = { applicationId?: string | undefined; }; /** @internal */ export const ChatZeroStateSuggestionOptions$outboundSchema: z.ZodType< ChatZeroStateSuggestionOptions$Outbound, z.ZodTypeDef, ChatZeroStateSuggestionOptions > = z.object({ applicationId: z.string().optional(), }); export function chatZeroStateSuggestionOptionsToJSON( chatZeroStateSuggestionOptions: ChatZeroStateSuggestionOptions, ): string { return JSON.stringify( ChatZeroStateSuggestionOptions$outboundSchema.parse( chatZeroStateSuggestionOptions, ), ); }