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