import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreditUsageReportPeriod = { /** * The total amount of credits added during the report period. */ creditsAdded: number; /** * The total amount of credits consumed during the report period. */ creditsConsumed: number; /** * The total amount of credits expired during the report period. */ creditsExpired: number; /** * The end date of the window for this report period. */ endDate: Date; /** * The start date of the window for this report period. */ startDate: Date; /** * The total number of transactions during the report period. */ transactionCount: number; }; /** @internal */ export declare const CreditUsageReportPeriod$inboundSchema: z.ZodType; export declare function creditUsageReportPeriodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=creditusagereportperiod.d.ts.map