@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
27 lines • 927 B
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
import { ResourceMetadata } from "./resourcemetadata.js";
export type Workflow = {
/**
* A unique ID for this workflow
*/
id: string;
/**
* A user-provided name for this workflow
*/
name?: string | undefined;
/**
* A unique ID for the account associated with the workflow
*/
accountId: string;
/**
* Indicates the readiness and deployment status of a workflow
*/
status?: string | undefined;
metadata?: ResourceMetadata | undefined;
};
/** @internal */
export declare const Workflow$inboundSchema: z.ZodType<Workflow, z.ZodTypeDef, unknown>;
export declare function workflowFromJSON(jsonString: string): SafeParseResult<Workflow, SDKValidationError>;
//# sourceMappingURL=workflow.d.ts.map