import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IssuingIntervalLimit } from "./issuingintervallimit.js"; export type IssuingVelocityLimit = { /** * The maximum amount in cents that can be spent in a given interval. */ amount: number; /** * Specifies the time frame for the velocity limit. Currently supports only per-transaction limits. */ interval: IssuingIntervalLimit; }; /** @internal */ export declare const IssuingVelocityLimit$inboundSchema: z.ZodType; /** @internal */ export type IssuingVelocityLimit$Outbound = { amount: number; interval: string; }; /** @internal */ export declare const IssuingVelocityLimit$outboundSchema: z.ZodType; export declare function issuingVelocityLimitToJSON(issuingVelocityLimit: IssuingVelocityLimit): string; export declare function issuingVelocityLimitFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=issuingvelocitylimit.d.ts.map