@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
22 lines • 785 B
TypeScript
import * as z from "zod/v3";
export type GetWorkflowInstanceRequest = {
/**
* The unique identifier of the account.
*/
accountId?: string | undefined;
workflowId?: string | undefined;
/**
* Unique identifier for the workflow instance
*/
instanceId: string;
};
/** @internal */
export type GetWorkflowInstanceRequest$Outbound = {
accountId: string;
workflowId: string;
instanceId: string;
};
/** @internal */
export declare const GetWorkflowInstanceRequest$outboundSchema: z.ZodType<GetWorkflowInstanceRequest$Outbound, z.ZodTypeDef, GetWorkflowInstanceRequest>;
export declare function getWorkflowInstanceRequestToJSON(getWorkflowInstanceRequest: GetWorkflowInstanceRequest): string;
//# sourceMappingURL=getworkflowinstance.d.ts.map