/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 7822dd1a7346 */ import * as z from "zod/v4"; export type StartDeploymentV1WorkflowsDeploymentsNameStartPostRequest = { name: string; }; /** @internal */ export type StartDeploymentV1WorkflowsDeploymentsNameStartPostRequest$Outbound = { name: string; }; /** @internal */ export const StartDeploymentV1WorkflowsDeploymentsNameStartPostRequest$outboundSchema: z.ZodType< StartDeploymentV1WorkflowsDeploymentsNameStartPostRequest$Outbound, StartDeploymentV1WorkflowsDeploymentsNameStartPostRequest > = z.object({ name: z.string(), }); export function startDeploymentV1WorkflowsDeploymentsNameStartPostRequestToJSON( startDeploymentV1WorkflowsDeploymentsNameStartPostRequest: StartDeploymentV1WorkflowsDeploymentsNameStartPostRequest, ): string { return JSON.stringify( StartDeploymentV1WorkflowsDeploymentsNameStartPostRequest$outboundSchema .parse(startDeploymentV1WorkflowsDeploymentsNameStartPostRequest), ); }