import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomerCustomerMeterMeter = { /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; /** * The ID of the object. */ id: string; /** * The name of the meter. Will be shown on customer's invoices and usage. */ name: string; }; /** @internal */ export declare const CustomerCustomerMeterMeter$inboundSchema: z.ZodMiniType; export declare function customerCustomerMeterMeterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customercustomermetermeter.d.ts.map