import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { TenantResponse } from "./tenant-response.js"; import { UserType } from "./user-type.js"; export type UserResponse = { /** * Empty for service accounts */ email?: string | undefined; id?: string | undefined; metadata?: { [k: string]: string; } | undefined; name?: string | undefined; roles?: Array | undefined; tenant?: TenantResponse | undefined; type?: UserType | undefined; }; /** @internal */ export declare const UserResponse$inboundSchema: z.ZodMiniType; export declare function userResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=user-response.d.ts.map