import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AmountDecimal, AmountDecimal$Outbound } from "./amountdecimal.js"; /** * An adjustment to a wallet. */ export type Adjustment = { adjustmentID: string; walletID: string; amount: AmountDecimal; createdOn: Date; }; /** @internal */ export declare const Adjustment$inboundSchema: z.ZodType; /** @internal */ export type Adjustment$Outbound = { adjustmentID: string; walletID: string; amount: AmountDecimal$Outbound; createdOn: string; }; /** @internal */ export declare const Adjustment$outboundSchema: z.ZodType; export declare function adjustmentToJSON(adjustment: Adjustment): string; export declare function adjustmentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=adjustment.d.ts.map