@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
25 lines • 872 B
TypeScript
import * as z from "zod/v3";
export type RestoreWorkspaceUserAccessRequest = {
/**
* The ID of the account
*/
accountId: string;
/**
* The ID of the workspace to restore access
*/
workspaceId: string;
/**
* The ID of the user to be restored to the workspace
*/
userId: string;
};
/** @internal */
export type RestoreWorkspaceUserAccessRequest$Outbound = {
accountId: string;
workspaceId: string;
userId: string;
};
/** @internal */
export declare const RestoreWorkspaceUserAccessRequest$outboundSchema: z.ZodType<RestoreWorkspaceUserAccessRequest$Outbound, z.ZodTypeDef, RestoreWorkspaceUserAccessRequest>;
export declare function restoreWorkspaceUserAccessRequestToJSON(restoreWorkspaceUserAccessRequest: RestoreWorkspaceUserAccessRequest): string;
//# sourceMappingURL=restoreworkspaceuseraccess.d.ts.map