import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomerCustomerMeterMeter } from "./customercustomermetermeter.js"; export type CustomerCustomerMeter = { /** * The ID of the object. */ id: string; /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; /** * The ID of the customer. */ customerId: string; /** * The ID of the meter. */ meterId: string; /** * The number of consumed units. */ consumedUnits: number; /** * The number of credited units. */ creditedUnits: number; /** * The balance of the meter, i.e. the difference between credited and consumed units. */ balance: number; meter: CustomerCustomerMeterMeter; }; /** @internal */ export declare const CustomerCustomerMeter$inboundSchema: z.ZodMiniType; export declare function customerCustomerMeterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customercustomermeter.d.ts.map