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"; /** * Option to auto-enroll in Dividend Reinvestment; defaults to DIVIDEND_REINVESTMENT_ENROLL */ export declare enum IRASimpleEnrollmentMetadataCreateDividendReinvestmentPlan { 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 IRASimpleEnrollmentMetadataCreateDividendReinvestmentPlanOpen = OpenEnum; /** * Option to auto-enroll in FDIC cash sweep; defaults to FDIC_CASH_SWEEP_ENROLL */ export declare enum IRASimpleEnrollmentMetadataCreateFdicCashSweep { 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 IRASimpleEnrollmentMetadataCreateFdicCashSweepOpen = OpenEnum; /** * Enrollment metadata for Simple IRA accounts enrollment type */ export type IRASimpleEnrollmentMetadataCreate = { /** * Option to auto-enroll in Dividend Reinvestment; defaults to DIVIDEND_REINVESTMENT_ENROLL */ dividendReinvestmentPlan?: IRASimpleEnrollmentMetadataCreateDividendReinvestmentPlanOpen | undefined; /** * Option to auto-enroll in FDIC cash sweep; defaults to FDIC_CASH_SWEEP_ENROLL */ fdicCashSweep?: IRASimpleEnrollmentMetadataCreateFdicCashSweepOpen | undefined; }; /** @internal */ export declare const IRASimpleEnrollmentMetadataCreateDividendReinvestmentPlan$inboundSchema: z.ZodType; /** @internal */ export declare const IRASimpleEnrollmentMetadataCreateDividendReinvestmentPlan$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 IRASimpleEnrollmentMetadataCreateDividendReinvestmentPlan$ { /** @deprecated use `IRASimpleEnrollmentMetadataCreateDividendReinvestmentPlan$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IRASimpleEnrollmentMetadataCreateDividendReinvestmentPlan$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const IRASimpleEnrollmentMetadataCreateFdicCashSweep$inboundSchema: z.ZodType; /** @internal */ export declare const IRASimpleEnrollmentMetadataCreateFdicCashSweep$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 IRASimpleEnrollmentMetadataCreateFdicCashSweep$ { /** @deprecated use `IRASimpleEnrollmentMetadataCreateFdicCashSweep$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IRASimpleEnrollmentMetadataCreateFdicCashSweep$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const IRASimpleEnrollmentMetadataCreate$inboundSchema: z.ZodType; /** @internal */ export type IRASimpleEnrollmentMetadataCreate$Outbound = { dividend_reinvestment_plan?: string | undefined; fdic_cash_sweep?: string | undefined; }; /** @internal */ export declare const IRASimpleEnrollmentMetadataCreate$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 IRASimpleEnrollmentMetadataCreate$ { /** @deprecated use `IRASimpleEnrollmentMetadataCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IRASimpleEnrollmentMetadataCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IRASimpleEnrollmentMetadataCreate$Outbound` instead. */ type Outbound = IRASimpleEnrollmentMetadataCreate$Outbound; } export declare function iraSimpleEnrollmentMetadataCreateToJSON(iraSimpleEnrollmentMetadataCreate: IRASimpleEnrollmentMetadataCreate): string; export declare function iraSimpleEnrollmentMetadataCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=irasimpleenrollmentmetadatacreate.d.ts.map