@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
13 lines • 708 B
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
/**
* A message confirming the instance was canceled, including the instance and workflow IDs
*/
export type CancelWorkflowInstanceResponse = {
message?: string | undefined;
};
/** @internal */
export declare const CancelWorkflowInstanceResponse$inboundSchema: z.ZodType<CancelWorkflowInstanceResponse, z.ZodTypeDef, unknown>;
export declare function cancelWorkflowInstanceResponseFromJSON(jsonString: string): SafeParseResult<CancelWorkflowInstanceResponse, SDKValidationError>;
//# sourceMappingURL=cancelworkflowinstanceresponse.d.ts.map