UNPKG

@docusign/iam-sdk

Version:

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

14 lines 781 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { WorkspaceEnvelopeSummary } from "./workspaceenvelopesummary.js"; export type GetWorkspaceEnvelopesResponse = { /** * The summary list of envelopes associated with the workspace */ envelopes: Array<WorkspaceEnvelopeSummary> | null; }; /** @internal */ export declare const GetWorkspaceEnvelopesResponse$inboundSchema: z.ZodType<GetWorkspaceEnvelopesResponse, z.ZodTypeDef, unknown>; export declare function getWorkspaceEnvelopesResponseFromJSON(jsonString: string): SafeParseResult<GetWorkspaceEnvelopesResponse, SDKValidationError>; //# sourceMappingURL=getworkspaceenvelopesresponse.d.ts.map