@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
33 lines • 1.08 kB
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type CreateWorkspaceUserResponse = {
/**
* The ID of the workspace
*/
workspaceId?: string | undefined;
/**
* The ID of the user
*/
userId?: string | undefined;
/**
* The ID of the role assigned to the user
*/
roleId?: string | undefined;
/**
* The email of the user
*/
email?: string | null | undefined;
/**
* The first name of the user
*/
firstName?: string | null | undefined;
/**
* The last name of the user
*/
lastName?: string | null | undefined;
};
/** @internal */
export declare const CreateWorkspaceUserResponse$inboundSchema: z.ZodType<CreateWorkspaceUserResponse, z.ZodTypeDef, unknown>;
export declare function createWorkspaceUserResponseFromJSON(jsonString: string): SafeParseResult<CreateWorkspaceUserResponse, SDKValidationError>;
//# sourceMappingURL=createworkspaceuserresponse.d.ts.map