UNPKG

@docusign/iam-sdk

Version:

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

24 lines 951 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Response for adding a document to an upload request */ export type AddWorkspaceUploadRequestDocumentResponse = { /** * The ID of the upload request */ uploadRequestId: string; /** * The ID of the document that was added */ documentId: string; /** * The name of the document */ documentName: string | null; }; /** @internal */ export declare const AddWorkspaceUploadRequestDocumentResponse$inboundSchema: z.ZodType<AddWorkspaceUploadRequestDocumentResponse, z.ZodTypeDef, unknown>; export declare function addWorkspaceUploadRequestDocumentResponseFromJSON(jsonString: string): SafeParseResult<AddWorkspaceUploadRequestDocumentResponse, SDKValidationError>; //# sourceMappingURL=addworkspaceuploadrequestdocumentresponse.d.ts.map