import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ObjectPermissions } from "./objectpermissions.js"; import { Person } from "./person.js"; export type Workflow = { /** * The name of the workflow. */ name?: string | undefined; author?: Person | undefined; /** * Server Unix timestamp of the creation time. */ createTimestamp?: number | undefined; /** * Server Unix timestamp of the last update time. */ lastUpdateTimestamp?: number | undefined; /** * Server Unix timestamp of the last time the draft was saved. */ lastDraftSavedAt?: number | undefined; lastUpdatedBy?: Person | undefined; permissions?: ObjectPermissions | undefined; /** * The ID of the workflow. */ id?: string | undefined; }; /** @internal */ export declare const Workflow$inboundSchema: z.ZodType; export declare function workflowFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workflow.d.ts.map