UNPKG

@docusign/iam-sdk

Version:

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

26 lines 1.04 kB
import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateWorkspaceEnvelopeRequest = { /** * The ID of the account */ accountId: string; /** * The ID of the workspace */ workspaceId: string; /** * The details of the envelope to be created including the list of document IDs to add to the envelope */ workspaceEnvelopeForCreate: components.WorkspaceEnvelopeForCreate; }; /** @internal */ export type CreateWorkspaceEnvelopeRequest$Outbound = { accountId: string; workspaceId: string; WorkspaceEnvelopeForCreate: components.WorkspaceEnvelopeForCreate$Outbound; }; /** @internal */ export declare const CreateWorkspaceEnvelopeRequest$outboundSchema: z.ZodType<CreateWorkspaceEnvelopeRequest$Outbound, z.ZodTypeDef, CreateWorkspaceEnvelopeRequest>; export declare function createWorkspaceEnvelopeRequestToJSON(createWorkspaceEnvelopeRequest: CreateWorkspaceEnvelopeRequest): string; //# sourceMappingURL=createworkspaceenvelope.d.ts.map