/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import * as models from "../index.js"; export type GetRequest = { channel: models.ChannelName; }; /** @internal */ export type GetRequest$Outbound = { channel: string; }; /** @internal */ export const GetRequest$outboundSchema: z.ZodMiniType< GetRequest$Outbound, GetRequest > = z.object({ channel: models.ChannelName$outboundSchema, }); export function getRequestToJSON(getRequest: GetRequest): string { return JSON.stringify(GetRequest$outboundSchema.parse(getRequest)); }