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"; /** * A temporal tax year value. This will always evaluate to a year based on the date the transfer was initiated. */ export declare enum TemporalTaxYear { TemporalTaxYearUnspecified = "TEMPORAL_TAX_YEAR_UNSPECIFIED", CurrentCalendarYear = "CURRENT_CALENDAR_YEAR", MinimumTaxYear = "MINIMUM_TAX_YEAR" } /** * A temporal tax year value. This will always evaluate to a year based on the date the transfer was initiated. */ export type TemporalTaxYearOpen = OpenEnum; /** * The type of retirement contribution. */ export declare enum ScheduledRetirementContributionCreateType { TypeUnspecified = "TYPE_UNSPECIFIED", Regular = "REGULAR", Employee = "EMPLOYEE", Employer = "EMPLOYER", Recharacterization = "RECHARACTERIZATION", Rollover60Day = "ROLLOVER_60_DAY", RolloverDirect = "ROLLOVER_DIRECT", Transfer = "TRANSFER", TrusteeFee = "TRUSTEE_FEE", Conversion = "CONVERSION", Repayment = "REPAYMENT", ContributionNonReportable = "CONTRIBUTION_NON_REPORTABLE" } /** * The type of retirement contribution. */ export type ScheduledRetirementContributionCreateTypeOpen = OpenEnum; /** * The retirement contribution details for a scheduled deposit */ export type ScheduledRetirementContributionCreate = { /** * An explicit tax year value. The current year is always valid; and the prior year is valid only before the tax deadline. Must be in "YYYY" format. */ taxYear?: number | undefined; /** * A temporal tax year value. This will always evaluate to a year based on the date the transfer was initiated. */ temporalTaxYear?: TemporalTaxYearOpen | undefined; /** * The type of retirement contribution. */ type: ScheduledRetirementContributionCreateTypeOpen; }; /** @internal */ export declare const TemporalTaxYear$inboundSchema: z.ZodType; /** @internal */ export declare const TemporalTaxYear$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 TemporalTaxYear$ { /** @deprecated use `TemporalTaxYear$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TemporalTaxYear$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const ScheduledRetirementContributionCreateType$inboundSchema: z.ZodType; /** @internal */ export declare const ScheduledRetirementContributionCreateType$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 ScheduledRetirementContributionCreateType$ { /** @deprecated use `ScheduledRetirementContributionCreateType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ScheduledRetirementContributionCreateType$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const ScheduledRetirementContributionCreate$inboundSchema: z.ZodType; /** @internal */ export type ScheduledRetirementContributionCreate$Outbound = { tax_year?: number | undefined; temporal_tax_year?: string | undefined; type: string; }; /** @internal */ export declare const ScheduledRetirementContributionCreate$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 ScheduledRetirementContributionCreate$ { /** @deprecated use `ScheduledRetirementContributionCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ScheduledRetirementContributionCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ScheduledRetirementContributionCreate$Outbound` instead. */ type Outbound = ScheduledRetirementContributionCreate$Outbound; } export declare function scheduledRetirementContributionCreateToJSON(scheduledRetirementContributionCreate: ScheduledRetirementContributionCreate): string; export declare function scheduledRetirementContributionCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=scheduledretirementcontributioncreate.d.ts.map