import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PlaidIntegration, PlaidIntegration$Outbound } from "./plaidintegration.js"; /** * Describes the account to link to the Moov account using a Plaid processor token. */ export type PlaidPayload = { /** * The details of a Plaid processor integration for a linked funding source. * * @remarks * * `sandbox` - When linking a bank account to a `sandbox` account using a Plaid processor token a default bank account * response will be used. The following default data will be used to generate the bank account in this flow: * * ``` * RoutingNumber: "011401533", * AccountNumber: "1111222233330000", * AccountType: "checking", * Mask: "0000" * ``` */ plaid: PlaidIntegration; }; /** @internal */ export declare const PlaidPayload$inboundSchema: z.ZodType; /** @internal */ export type PlaidPayload$Outbound = { plaid: PlaidIntegration$Outbound; }; /** @internal */ export declare const PlaidPayload$outboundSchema: z.ZodType; export declare function plaidPayloadToJSON(plaidPayload: PlaidPayload): string; export declare function plaidPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=plaidpayload.d.ts.map