import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuditLogEntryResource = { /** * The type of the resource. */ type: string; /** * The ID of the resource. */ id: string; /** * The descriptive name of the resource. */ name: string; }; /** @internal */ export declare const AuditLogEntryResource$inboundSchema: z.ZodType; export declare function auditLogEntryResourceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=auditlogentryresource.d.ts.map