UNPKG

@docusign/iam-sdk

Version:

Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.

22 lines 812 B
import * as z from "zod/v3"; export type CancelWorkflowInstanceRequest = { /** * The unique identifier of the account. */ accountId?: string | undefined; workflowId?: string | undefined; /** * Unique identifier for the workflow instance */ instanceId: string; }; /** @internal */ export type CancelWorkflowInstanceRequest$Outbound = { accountId: string; workflowId: string; instanceId: string; }; /** @internal */ export declare const CancelWorkflowInstanceRequest$outboundSchema: z.ZodType<CancelWorkflowInstanceRequest$Outbound, z.ZodTypeDef, CancelWorkflowInstanceRequest>; export declare function cancelWorkflowInstanceRequestToJSON(cancelWorkflowInstanceRequest: CancelWorkflowInstanceRequest): string; //# sourceMappingURL=cancelworkflowinstance.d.ts.map