import * as z from "zod"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EddAccountEnrollmentMetadataCreate, EddAccountEnrollmentMetadataCreate$Outbound } from "./eddaccountenrollmentmetadatacreate.js"; /** * Option to auto-enroll in Dividend Reinvestment; defaults to DIVIDEND_REINVESTMENT_ENROLL */ export declare enum DividendReinvestmentPlan { AutoEnrollDividendReinvestmentUnspecified = "AUTO_ENROLL_DIVIDEND_REINVESTMENT_UNSPECIFIED", DividendReinvestmentEnroll = "DIVIDEND_REINVESTMENT_ENROLL", DividendReinvestmentDecline = "DIVIDEND_REINVESTMENT_DECLINE" } /** * Option to auto-enroll in Dividend Reinvestment; defaults to DIVIDEND_REINVESTMENT_ENROLL */ export type DividendReinvestmentPlanOpen = OpenEnum; /** * Option to auto-enroll in FDIC cash sweep; defaults to FDIC_CASH_SWEEP_ENROLL */ export declare enum FdicCashSweep { AutoEnrollFdicCashSweepUnspecified = "AUTO_ENROLL_FDIC_CASH_SWEEP_UNSPECIFIED", FdicCashSweepEnroll = "FDIC_CASH_SWEEP_ENROLL", FdicCashSweepDecline = "FDIC_CASH_SWEEP_DECLINE" } /** * Option to auto-enroll in FDIC cash sweep; defaults to FDIC_CASH_SWEEP_ENROLL */ export type FdicCashSweepOpen = OpenEnum; /** * Option to auto-enroll in Money Market Fund Sweep; defaults to MONEY_MARKET_FUND_SWEEP_ENROLL */ export declare enum MoneyMarketFundSweep { AutoEnrollMoneyMarketFundSweepUnspecified = "AUTO_ENROLL_MONEY_MARKET_FUND_SWEEP_UNSPECIFIED", MoneyMarketFundSweepEnroll = "MONEY_MARKET_FUND_SWEEP_ENROLL", MoneyMarketFundSweepDecline = "MONEY_MARKET_FUND_SWEEP_DECLINE" } /** * Option to auto-enroll in Money Market Fund Sweep; defaults to MONEY_MARKET_FUND_SWEEP_ENROLL */ export type MoneyMarketFundSweepOpen = OpenEnum; export type CorporationEnrollmentMetadataCreate = { /** * Option to auto-enroll in Dividend Reinvestment; defaults to DIVIDEND_REINVESTMENT_ENROLL */ dividendReinvestmentPlan?: DividendReinvestmentPlanOpen | undefined; /** * Enrollment metadata for Entity Accounts */ eddAccountEnrollmentMetadata?: EddAccountEnrollmentMetadataCreate | undefined; /** * Option to auto-enroll in FDIC cash sweep; defaults to FDIC_CASH_SWEEP_ENROLL */ fdicCashSweep?: FdicCashSweepOpen | undefined; /** * Option to auto-enroll in Money Market Fund Sweep; defaults to MONEY_MARKET_FUND_SWEEP_ENROLL */ moneyMarketFundSweep?: MoneyMarketFundSweepOpen | undefined; }; /** @internal */ export declare const DividendReinvestmentPlan$inboundSchema: z.ZodType; /** @internal */ export declare const DividendReinvestmentPlan$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace DividendReinvestmentPlan$ { /** @deprecated use `DividendReinvestmentPlan$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DividendReinvestmentPlan$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const FdicCashSweep$inboundSchema: z.ZodType; /** @internal */ export declare const FdicCashSweep$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace FdicCashSweep$ { /** @deprecated use `FdicCashSweep$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FdicCashSweep$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const MoneyMarketFundSweep$inboundSchema: z.ZodType; /** @internal */ export declare const MoneyMarketFundSweep$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace MoneyMarketFundSweep$ { /** @deprecated use `MoneyMarketFundSweep$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MoneyMarketFundSweep$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const CorporationEnrollmentMetadataCreate$inboundSchema: z.ZodType; /** @internal */ export type CorporationEnrollmentMetadataCreate$Outbound = { dividend_reinvestment_plan?: string | undefined; edd_account_enrollment_metadata?: EddAccountEnrollmentMetadataCreate$Outbound | undefined; fdic_cash_sweep?: string | undefined; money_market_fund_sweep?: string | undefined; }; /** @internal */ export declare const CorporationEnrollmentMetadataCreate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CorporationEnrollmentMetadataCreate$ { /** @deprecated use `CorporationEnrollmentMetadataCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CorporationEnrollmentMetadataCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CorporationEnrollmentMetadataCreate$Outbound` instead. */ type Outbound = CorporationEnrollmentMetadataCreate$Outbound; } export declare function corporationEnrollmentMetadataCreateToJSON(corporationEnrollmentMetadataCreate: CorporationEnrollmentMetadataCreate): string; export declare function corporationEnrollmentMetadataCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=corporationenrollmentmetadatacreate.d.ts.map