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