import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The owner type of the bank account */ export declare const OwnerType: { readonly Company: "Company"; }; /** * The owner type of the bank account */ export type OwnerType = ClosedEnum; /** * Request body for creating a verified company bank account from a Plaid processor token. */ export type PlaidProcessorTokenRequest = { /** * The owner type of the bank account */ ownerType: OwnerType; /** * The owner UUID of the bank account */ ownerId: string; /** * The Plaid processor token */ processorToken: string; }; /** @internal */ export declare const OwnerType$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PlaidProcessorTokenRequest$Outbound = { owner_type: string; owner_id: string; processor_token: string; }; /** @internal */ export declare const PlaidProcessorTokenRequest$outboundSchema: z.ZodType; export declare function plaidProcessorTokenRequestToJSON(plaidProcessorTokenRequest: PlaidProcessorTokenRequest): string; //# sourceMappingURL=plaidprocessortokenrequest.d.ts.map