/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type GetBuildsDeprecatedGlobals = { appId?: string | undefined; }; export type GetBuildsDeprecatedRequest = { appId?: string | undefined; }; /** @internal */ export type GetBuildsDeprecatedRequest$Outbound = { appId?: string | undefined; }; /** @internal */ export const GetBuildsDeprecatedRequest$outboundSchema: z.ZodType< GetBuildsDeprecatedRequest$Outbound, z.ZodTypeDef, GetBuildsDeprecatedRequest > = z.object({ appId: z.string().optional(), }); export function getBuildsDeprecatedRequestToJSON( getBuildsDeprecatedRequest: GetBuildsDeprecatedRequest, ): string { return JSON.stringify( GetBuildsDeprecatedRequest$outboundSchema.parse(getBuildsDeprecatedRequest), ); }