@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
31 lines • 1.06 kB
TypeScript
import * as z from "zod/v3";
import * as components from "../components/index.js";
export type UpdateWorkspaceUserRequest = {
/**
* The ID of the account
*/
accountId: string;
/**
* The ID of the workspace
*/
workspaceId: string;
/**
* The ID of the user to update
*/
userId: string;
/**
* The user details to update to including the RoleId
*/
workspaceUserForUpdate?: components.WorkspaceUserForUpdate | undefined;
};
/** @internal */
export type UpdateWorkspaceUserRequest$Outbound = {
accountId: string;
workspaceId: string;
userId: string;
WorkspaceUserForUpdate?: components.WorkspaceUserForUpdate$Outbound | undefined;
};
/** @internal */
export declare const UpdateWorkspaceUserRequest$outboundSchema: z.ZodType<UpdateWorkspaceUserRequest$Outbound, z.ZodTypeDef, UpdateWorkspaceUserRequest>;
export declare function updateWorkspaceUserRequestToJSON(updateWorkspaceUserRequest: UpdateWorkspaceUserRequest): string;
//# sourceMappingURL=updateworkspaceuser.d.ts.map