UNPKG

@docusign/iam-sdk

Version:

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

32 lines 1.87 kB
import * as z from "zod"; 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>; /** @internal */ export type CancelWorkflowInstanceResponse$Outbound = { message?: string | undefined; }; /** @internal */ export declare const CancelWorkflowInstanceResponse$outboundSchema: z.ZodType<CancelWorkflowInstanceResponse$Outbound, z.ZodTypeDef, CancelWorkflowInstanceResponse>; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CancelWorkflowInstanceResponse$ { /** @deprecated use `CancelWorkflowInstanceResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType<CancelWorkflowInstanceResponse, z.ZodTypeDef, unknown>; /** @deprecated use `CancelWorkflowInstanceResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType<CancelWorkflowInstanceResponse$Outbound, z.ZodTypeDef, CancelWorkflowInstanceResponse>; /** @deprecated use `CancelWorkflowInstanceResponse$Outbound` instead. */ type Outbound = CancelWorkflowInstanceResponse$Outbound; } export declare function cancelWorkflowInstanceResponseToJSON(cancelWorkflowInstanceResponse: CancelWorkflowInstanceResponse): string; export declare function cancelWorkflowInstanceResponseFromJSON(jsonString: string): SafeParseResult<CancelWorkflowInstanceResponse, SDKValidationError>; //# sourceMappingURL=cancelworkflowinstanceresponse.d.ts.map