UNPKG

@docusign/iam-sdk

Version:

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

23 lines 818 B
import * as z from "zod/v3"; import * as components from "../components/index.js"; export type UpdateWorkspaceRequest = { /** * The ID of the account */ accountId: string; /** * The ID of the workspace */ workspaceId: string; updateWorkspaceBody: components.UpdateWorkspaceBody; }; /** @internal */ export type UpdateWorkspaceRequest$Outbound = { accountId: string; workspaceId: string; UpdateWorkspaceBody: components.UpdateWorkspaceBody$Outbound; }; /** @internal */ export declare const UpdateWorkspaceRequest$outboundSchema: z.ZodType<UpdateWorkspaceRequest$Outbound, z.ZodTypeDef, UpdateWorkspaceRequest>; export declare function updateWorkspaceRequestToJSON(updateWorkspaceRequest: UpdateWorkspaceRequest): string; //# sourceMappingURL=updateworkspace.d.ts.map