import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ResourceTypeEnum } from "./resourcetypeenum.js"; export type SkippedWorkflowDto = { /** * Type of the layout */ resourceType: ResourceTypeEnum; /** * Resource ID */ resourceId: string; /** * Resource name */ resourceName: string; /** * Reason for skipping */ reason: string; }; /** @internal */ export declare const SkippedWorkflowDto$inboundSchema: z.ZodType; export declare function skippedWorkflowDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=skippedworkflowdto.d.ts.map