/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type SyncWorkflowDto = { /** * Target environment identifier to sync the workflow to */ targetEnvironmentId: string; }; /** @internal */ export type SyncWorkflowDto$Outbound = { targetEnvironmentId: string; }; /** @internal */ export const SyncWorkflowDto$outboundSchema: z.ZodType< SyncWorkflowDto$Outbound, z.ZodTypeDef, SyncWorkflowDto > = z.object({ targetEnvironmentId: z.string(), }); export function syncWorkflowDtoToJSON( syncWorkflowDto: SyncWorkflowDto, ): string { return JSON.stringify(SyncWorkflowDto$outboundSchema.parse(syncWorkflowDto)); }