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 UpdateUserRolesResponse = { /** * 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 UpdateUserRolesResponse$inboundSchema: z.ZodMiniType; export declare function updateUserRolesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=update-user-roles-response.d.ts.map