import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IssuingVelocityLimit, IssuingVelocityLimit$Outbound } from "./issuingvelocitylimit.js"; export type IssuingControls = { /** * Indicates if the card is single-use. If true, the card closes after the first authorization. */ singleUse?: boolean | undefined; /** * Sets the spending limit per time interval. Only one limit per interval is supported. */ velocityLimits?: Array | undefined; }; /** @internal */ export declare const IssuingControls$inboundSchema: z.ZodType; /** @internal */ export type IssuingControls$Outbound = { singleUse?: boolean | undefined; velocityLimits?: Array | undefined; }; /** @internal */ export declare const IssuingControls$outboundSchema: z.ZodType; export declare function issuingControlsToJSON(issuingControls: IssuingControls): string; export declare function issuingControlsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=issuingcontrols.d.ts.map