import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreditExpiration = { /** * The current balance of the credit expiration. */ balance: number; /** * The date and time the credit expiration was created. */ createdAt?: Date | undefined; /** * The date and time the credit expiration will expire. */ expiresAt?: Date | undefined; /** * The initial balance of the credit expiration (i.e. how much was purchased). */ initialBalance: number; }; /** @internal */ export declare const CreditExpiration$inboundSchema: z.ZodType; export declare function creditExpirationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=creditexpiration.d.ts.map