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; export declare function workspaceUserSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workspaceusersummary.d.ts.map