import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuditLogAction } from "./auditlogaction.js"; import { AuditLogEntryResource } from "./auditlogentryresource.js"; import { AuditLogEntryUser } from "./auditlogentryuser.js"; export type AuditLogEntry = { /** * Always `audit-log`. */ type: "audit-log"; /** * The ID for the audit log entry. */ id?: string | null | undefined; /** * The ID of the merchant account this entry was created for. */ merchantAccountId?: string | null | undefined; resource: AuditLogEntryResource; action: AuditLogAction; user: AuditLogEntryUser; /** * The date and time that the action was performed. */ timestamp: Date; }; /** @internal */ export declare const AuditLogEntry$inboundSchema: z.ZodType; export declare function auditLogEntryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=auditlogentry.d.ts.map