import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { UserStatus } from "./userstatus.js"; export type AuditLogEntryUser = { /** * Always `user`. */ type: "user"; /** * The ID of the user. */ id?: string | null | undefined; /** * The name of the user. */ name: string; /** * The email address for this user. */ emailAddress?: string | null | undefined; /** * Whether this is a Gr4vy staff user. */ isStaff: boolean; status: UserStatus; }; /** @internal */ export declare const AuditLogEntryUser$inboundSchema: z.ZodType; export declare function auditLogEntryUserFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=auditlogentryuser.d.ts.map