import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SweepConfigStatus } from "./sweepconfigstatus.js"; export type CreateSweepConfig = { walletID: string; status: SweepConfigStatus; /** * ID of the payment method. */ pushPaymentMethodID: string; /** * ID of the payment method. */ pullPaymentMethodID: string; /** * The text that appears on the banking statement. The default descriptor is a 10 character ID if an override is not set in the sweep configs statementDescriptor. */ statementDescriptor?: string | undefined; minimumBalance?: string | undefined; }; /** @internal */ export declare const CreateSweepConfig$inboundSchema: z.ZodType; /** @internal */ export type CreateSweepConfig$Outbound = { walletID: string; status: string; pushPaymentMethodID: string; pullPaymentMethodID: string; statementDescriptor?: string | undefined; minimumBalance?: string | undefined; }; /** @internal */ export declare const CreateSweepConfig$outboundSchema: z.ZodType; export declare function createSweepConfigToJSON(createSweepConfig: CreateSweepConfig): string; export declare function createSweepConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createsweepconfig.d.ts.map