@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
33 lines • 1.04 kB
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type WorkspaceUserSummary = {
/**
* The ID of the user
*/
userId?: 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;
/**
* The ID of the users's role
*/
roleId?: string | null | undefined;
/**
* The name of the user's role
*/
roleName?: string | null | undefined;
};
/** @internal */
export declare const WorkspaceUserSummary$inboundSchema: z.ZodType<WorkspaceUserSummary, z.ZodTypeDef, unknown>;
export declare function workspaceUserSummaryFromJSON(jsonString: string): SafeParseResult<WorkspaceUserSummary, SDKValidationError>;
//# sourceMappingURL=workspaceusersummary.d.ts.map