UNPKG

@docusign/iam-sdk

Version:

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

32 lines 1.06 kB
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A warning encountered during document processing that did not prevent overall success. */ export type DocumentWarning = { /** * Machine-readable warning code */ code: string; /** * Human-readable warning summary */ message: string; /** * Detailed diagnostic information about the warning */ detail?: string | undefined; /** * Whether this warning can be remediated by the client */ recoverable: boolean; /** * Key referencing an action in `_actions` that can resolve this warning */ remedy?: string | undefined; }; /** @internal */ export declare const DocumentWarning$inboundSchema: z.ZodType<DocumentWarning, z.ZodTypeDef, unknown>; export declare function documentWarningFromJSON(jsonString: string): SafeParseResult<DocumentWarning, SDKValidationError>; //# sourceMappingURL=documentwarning.d.ts.map