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 { PhoneNumber, PhoneNumber$Outbound } from "./phonenumber.js"; /** * The current price of one unit of the asset in USD. */ export type CurrentPrice = { /** * The decimal value, as a string; Refer to [Google’s Decimal type protocol buffer](https://github.com/googleapis/googleapis/blob/40203ca1880849480bbff7b8715491060bbccdf1/google/type/decimal.proto#L33) for details */ value?: string | undefined; }; /** * The issuer’s mailing address. */ export type AlternativeInvestmentMailingAddress = { /** * Unstructured address lines describing the lower levels of an address. * * @remarks * * Because values in address_lines do not have type information and may sometimes contain multiple values in a single field (e.g. "Austin, TX"), it is important that the line order is clear. The order of address lines should be "envelope order" for the country/region of the address. In places where this can vary (e.g. Japan), address_language is used to make it explicit (e.g. "ja" for large-to-small ordering and "ja-Latn" or "en" for small-to-large). This way, the most specific line of an address can be selected based on the language. * * The minimum permitted structural representation of an address consists of a region_code with all remaining information placed in the address_lines. It would be possible to format such an address very approximately without geocoding, but no semantic reasoning could be made about any of the address components until it was at least partially resolved. * * Creating an address only containing a region_code and address_lines, and then geocoding is the recommended way to handle completely unstructured addresses (as opposed to guessing which parts of the address should be localities or administrative areas). */ addressLines?: Array | undefined; /** * Optional. Highest administrative subdivision which is used for postal addresses of a country or region. For example, this can be a state, a province, an oblast, or a prefecture. Specifically, for Spain this is the province and not the autonomous community (e.g. "Barcelona" and not "Catalonia"). Many countries don't use an administrative area in postal addresses. E.g. in Switzerland this should be left unpopulated. */ administrativeArea?: string | undefined; /** * Optional. BCP-47 language code of the contents of this address (if known). This is often the UI language of the input form or is expected to match one of the languages used in the address' country/region, or their transliterated equivalents. This can affect formatting in certain countries, but is not critical to the correctness of the data and will never affect any validation or other non-formatting related operations. * * @remarks * * If this value is not known, it should be omitted (rather than specifying a possibly incorrect default). * * Examples: "zh-Hant", "ja", "ja-Latn", "en". */ languageCode?: string | undefined; /** * Optional. Generally refers to the city/town portion of the address. Examples: US city, IT comune, UK post town. In regions of the world where localities are not well defined or do not fit into this structure well, leave locality empty and use address_lines. */ locality?: string | undefined; /** * Optional. The name of the organization at the address. */ organization?: string | undefined; /** * Optional. Postal code of the address. Not all countries use or require postal codes to be present, but where they are used, they may trigger additional validation with other parts of the address (e.g. state/zip validation in the U.S.A.). */ postalCode?: string | undefined; /** * Optional. The recipient at the address. This field may, under certain circumstances, contain multiline information. For example, it might contain "care of" information. */ recipients?: Array | undefined; /** * Required. CLDR region code of the country/region of the address. This is never inferred and it is up to the user to ensure the value is correct. See http://cldr.unicode.org/ and http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html for details. Example: "CH" for Switzerland. */ regionCode?: string | undefined; /** * The schema revision of the `PostalAddress`. This must be set to 0, which is the latest revision. * * @remarks * * All new revisions **must** be backward compatible with old revisions. */ revision?: number | undefined; /** * Optional. Additional, country-specific, sorting code. This is not used in most regions. Where it is used, the value is either a string like "CEDEX", optionally followed by a number (e.g. "CEDEX 7"), or just a number alone, representing the "sector code" (Jamaica), "delivery area indicator" (Malawi) or "post office indicator" (e.g. Côte d'Ivoire). */ sortingCode?: string | undefined; /** * Optional. Sublocality of the address. For example, this can be neighborhoods, boroughs, districts. */ sublocality?: string | undefined; }; /** * The issuer’s physical address. */ export type PhysicalAddress = { /** * Unstructured address lines describing the lower levels of an address. * * @remarks * * Because values in address_lines do not have type information and may sometimes contain multiple values in a single field (e.g. "Austin, TX"), it is important that the line order is clear. The order of address lines should be "envelope order" for the country/region of the address. In places where this can vary (e.g. Japan), address_language is used to make it explicit (e.g. "ja" for large-to-small ordering and "ja-Latn" or "en" for small-to-large). This way, the most specific line of an address can be selected based on the language. * * The minimum permitted structural representation of an address consists of a region_code with all remaining information placed in the address_lines. It would be possible to format such an address very approximately without geocoding, but no semantic reasoning could be made about any of the address components until it was at least partially resolved. * * Creating an address only containing a region_code and address_lines, and then geocoding is the recommended way to handle completely unstructured addresses (as opposed to guessing which parts of the address should be localities or administrative areas). */ addressLines?: Array | undefined; /** * Optional. Highest administrative subdivision which is used for postal addresses of a country or region. For example, this can be a state, a province, an oblast, or a prefecture. Specifically, for Spain this is the province and not the autonomous community (e.g. "Barcelona" and not "Catalonia"). Many countries don't use an administrative area in postal addresses. E.g. in Switzerland this should be left unpopulated. */ administrativeArea?: string | undefined; /** * Optional. BCP-47 language code of the contents of this address (if known). This is often the UI language of the input form or is expected to match one of the languages used in the address' country/region, or their transliterated equivalents. This can affect formatting in certain countries, but is not critical to the correctness of the data and will never affect any validation or other non-formatting related operations. * * @remarks * * If this value is not known, it should be omitted (rather than specifying a possibly incorrect default). * * Examples: "zh-Hant", "ja", "ja-Latn", "en". */ languageCode?: string | undefined; /** * Optional. Generally refers to the city/town portion of the address. Examples: US city, IT comune, UK post town. In regions of the world where localities are not well defined or do not fit into this structure well, leave locality empty and use address_lines. */ locality?: string | undefined; /** * Optional. The name of the organization at the address. */ organization?: string | undefined; /** * Optional. Postal code of the address. Not all countries use or require postal codes to be present, but where they are used, they may trigger additional validation with other parts of the address (e.g. state/zip validation in the U.S.A.). */ postalCode?: string | undefined; /** * Optional. The recipient at the address. This field may, under certain circumstances, contain multiline information. For example, it might contain "care of" information. */ recipients?: Array | undefined; /** * Required. CLDR region code of the country/region of the address. This is never inferred and it is up to the user to ensure the value is correct. See http://cldr.unicode.org/ and http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html for details. Example: "CH" for Switzerland. */ regionCode?: string | undefined; /** * The schema revision of the `PostalAddress`. This must be set to 0, which is the latest revision. * * @remarks * * All new revisions **must** be backward compatible with old revisions. */ revision?: number | undefined; /** * Optional. Additional, country-specific, sorting code. This is not used in most regions. Where it is used, the value is either a string like "CEDEX", optionally followed by a number (e.g. "CEDEX 7"), or just a number alone, representing the "sector code" (Jamaica), "delivery area indicator" (Malawi) or "post office indicator" (e.g. Côte d'Ivoire). */ sortingCode?: string | undefined; /** * Optional. Sublocality of the address. For example, this can be neighborhoods, boroughs, districts. */ sublocality?: string | undefined; }; /** * The issuer’s registration type. */ export declare enum AlternativeInvestmentRegistrationType { RegistrationTypeUnspecified = "REGISTRATION_TYPE_UNSPECIFIED", Other = "OTHER", BrokerDealer = "BROKER_DEALER", ExemptReportingAdvisor = "EXEMPT_REPORTING_ADVISOR", Ria = "RIA" } /** * The issuer’s registration type. */ export type AlternativeInvestmentRegistrationTypeOpen = OpenEnum; /** * The issuer type. */ export declare enum AlternativeInvestmentIssuerType { TypeUnspecified = "TYPE_UNSPECIFIED", Corporation = "CORPORATION", Llc = "LLC", LimitedPartnership = "LIMITED_PARTNERSHIP", GeneralPartnership = "GENERAL_PARTNERSHIP", Trust = "TRUST", Ltd = "LTD", NoLienLetter = "NO_LIEN_LETTER", EntityFormation = "ENTITY_FORMATION" } /** * The issuer type. */ export type AlternativeInvestmentIssuerTypeOpen = OpenEnum; /** * The issuer entity of the alternative investment asset. */ export type Issuer = { /** * A description of the issuer. */ description?: string | undefined; /** * The issuer’s email addresses. */ emails?: Array | undefined; /** * The issuer’s administrative area of incorporation. */ incorporatedAdministrativeArea?: string | undefined; /** * The issuer’s region of incorporation. */ incorporatedRegionCode?: string | undefined; /** * The issuer’s mailing address. */ mailingAddress?: AlternativeInvestmentMailingAddress | null | undefined; /** * The issuer’s Manager CRDs. */ managerCrds?: Array | undefined; /** * The issuer’s phone numbers. */ phoneNumbers?: Array | undefined; /** * The issuer’s physical address. */ physicalAddress?: PhysicalAddress | null | undefined; /** * The issuer’s registration type. */ registrationType?: AlternativeInvestmentRegistrationTypeOpen | undefined; /** * The issuer’s title. */ title?: string | undefined; /** * The issuer type. */ type?: AlternativeInvestmentIssuerTypeOpen | undefined; }; /** * The minimum purchase amount required for an initial order of this asset. Value is in USD. */ export type MinimumInitialSubscriptionAmount = { /** * The decimal value, as a string; Refer to [Google’s Decimal type protocol buffer](https://github.com/googleapis/googleapis/blob/40203ca1880849480bbff7b8715491060bbccdf1/google/type/decimal.proto#L33) for details */ value?: string | undefined; }; /** * The minimum purchase amount required for subsequent orders of this asset. Value is in USD. */ export type MinimumSubsequentSubscriptionAmount = { /** * The decimal value, as a string; Refer to [Google’s Decimal type protocol buffer](https://github.com/googleapis/googleapis/blob/40203ca1880849480bbff7b8715491060bbccdf1/google/type/decimal.proto#L33) for details */ value?: string | undefined; }; /** * The fee amount charged per share of the Alternative Investment in USD. This is included in current price. */ export type PerShareFeeAmount = { /** * The decimal value, as a string; Refer to [Google’s Decimal type protocol buffer](https://github.com/googleapis/googleapis/blob/40203ca1880849480bbff7b8715491060bbccdf1/google/type/decimal.proto#L33) for details */ value?: string | undefined; }; /** * Indicates the current state of the asset record. The record state identifies which record types the asset allows. */ export declare enum RecordState { RecordStateUnspecified = "RECORD_STATE_UNSPECIFIED", Active = "ACTIVE", Frozen = "FROZEN", Inactive = "INACTIVE" } /** * Indicates the current state of the asset record. The record state identifies which record types the asset allows. */ export type RecordStateOpen = OpenEnum; /** * Indicates how frequently an account can redeem the asset. */ export declare enum RedemptionFrequency { FrequencyUnspecified = "FREQUENCY_UNSPECIFIED", Daily = "DAILY", Weekly = "WEEKLY", BiWeekly = "BI_WEEKLY", Monthly = "MONTHLY", Quarterly = "QUARTERLY", BiAnnually = "BI_ANNUALLY", Annually = "ANNUALLY" } /** * Indicates how frequently an account can redeem the asset. */ export type RedemptionFrequencyOpen = OpenEnum; /** * The asset’s state in the Apex alternative investment platform. */ export declare enum AlternativeInvestmentState { StateUnspecified = "STATE_UNSPECIFIED", Open = "OPEN", Closed = "CLOSED" } /** * The asset’s state in the Apex alternative investment platform. */ export type AlternativeInvestmentStateOpen = OpenEnum; /** * The asset’s strategy as specified by the issuer. */ export declare enum Strategy { StrategyUnspecified = "STRATEGY_UNSPECIFIED", MergerArbitrage = "MERGER_ARBITRAGE", Activist = "ACTIVIST", Macro = "MACRO", GlobalMacro = "GLOBAL_MACRO", LongShort = "LONG_SHORT", MarketNeutral = "MARKET_NEUTRAL", DedicatedShort = "DEDICATED_SHORT", FixedIncome = "FIXED_INCOME", EquityHedge = "EQUITY_HEDGE", RelativeValue = "RELATIVE_VALUE", EventDriven = "EVENT_DRIVEN", VariableEquity = "VARIABLE_EQUITY", CommodityTrading = "COMMODITY_TRADING", CtaManagedFutures = "CTA_MANAGED_FUTURES", Other = "OTHER" } /** * The asset’s strategy as specified by the issuer. */ export type StrategyOpen = OpenEnum; /** * Indicates how frequently the asset will accept subscriptions (that is, how often an account is allowed to buy the asset). */ export declare enum SubscriptionFrequency { FrequencyUnspecified = "FREQUENCY_UNSPECIFIED", Daily = "DAILY", Weekly = "WEEKLY", BiWeekly = "BI_WEEKLY", Monthly = "MONTHLY", Quarterly = "QUARTERLY", BiAnnually = "BI_ANNUALLY", Annually = "ANNUALLY" } /** * Indicates how frequently the asset will accept subscriptions (that is, how often an account is allowed to buy the asset). */ export type SubscriptionFrequencyOpen = OpenEnum; /** * The process used for subscriptions orders of this asset. */ export declare enum SubscriptionOrderProcess { SubscriptionOrderProcessUnspecified = "SUBSCRIPTION_ORDER_PROCESS_UNSPECIFIED", SettlementPostNavCalculation = "SETTLEMENT_POST_NAV_CALCULATION", SettlementPreNavCalculation = "SETTLEMENT_PRE_NAV_CALCULATION", EscrowTrade = "ESCROW_TRADE", CommitmentDrawDown = "COMMITMENT_DRAW_DOWN" } /** * The process used for subscriptions orders of this asset. */ export type SubscriptionOrderProcessOpen = OpenEnum; /** * The asset’s tax reporting structure. */ export declare enum TaxReportingStructure { TaxReportingStructureUnspecified = "TAX_REPORTING_STRUCTURE_UNSPECIFIED", TaxReportingStructure1099 = "TAX_REPORTING_STRUCTURE_1099", TaxReportingStructureK1 = "TAX_REPORTING_STRUCTURE_K1", TaxReportingStructureOther = "TAX_REPORTING_STRUCTURE_OTHER" } /** * The asset’s tax reporting structure. */ export type TaxReportingStructureOpen = OpenEnum; /** * The type of alternative investment asset. */ export declare enum AlternativeInvestmentType { TypeUnspecified = "TYPE_UNSPECIFIED", HedgeFund = "HEDGE_FUND", FundOfFunds = "FUND_OF_FUNDS", PrivateEquityFund = "PRIVATE_EQUITY_FUND", ManagedDebtFund = "MANAGED_DEBT_FUND", PrivateDebtFund = "PRIVATE_DEBT_FUND", ManagedCurrencyFund = "MANAGED_CURRENCY_FUND", CommodityPoolFund = "COMMODITY_POOL_FUND", Reit = "REIT", ManagedFutureFund = "MANAGED_FUTURE_FUND", OtherType = "OTHER_TYPE", BusinessDevelopmentCorporation = "BUSINESS_DEVELOPMENT_CORPORATION", RegisteredHedgeFund = "REGISTERED_HEDGE_FUND", OilAndGasPublic = "OIL_AND_GAS_PUBLIC", OilAndGasPrivate = "OIL_AND_GAS_PRIVATE", EquipmentLeasingPublic = "EQUIPMENT_LEASING_PUBLIC", EquipmentLeasingPrivate = "EQUIPMENT_LEASING_PRIVATE", FuturesPublic = "FUTURES_PUBLIC", FuturesPrivate = "FUTURES_PRIVATE", NotesPublic = "NOTES_PUBLIC", NotesPrivate = "NOTES_PRIVATE", RealEstatePublic = "REAL_ESTATE_PUBLIC", RealEstatePrivate = "REAL_ESTATE_PRIVATE", ClosedEndManagementInvestmentCompany = "CLOSED_END_MANAGEMENT_INVESTMENT_COMPANY" } /** * The type of alternative investment asset. */ export type AlternativeInvestmentTypeOpen = OpenEnum; /** * An alternative investment is a financial asset that does not fall into one of the conventional investment categories. */ export type AlternativeInvestment = { /** * The ID of the alternative asset specified in the request. */ assetId?: string | undefined; /** * Indicates whether the asset allows cash distributions. If `TRUE` the alternative order request can specify `CASH` as the `distribution type`. */ cashDistributionAllowed?: boolean | undefined; /** * The current price of one unit of the asset in USD. */ currentPrice?: CurrentPrice | null | undefined; /** * The CUSIP of the asset. It is a nine-character alphanumeric identifier used to uniquely identify securities, particularly in the United States and Canada. * * @remarks * * A true CUSIP consists of: - A six-character identifier for the issuer (company, municipality, etc.). - A two-character identifier for the type of security (equity, debt, etc.) and the specific issue within the issuer. - A single check digit. * * Many alternative investments assets do not have a true CUSIP. In such cases, the system generates a synthetic CUSIP when the asset is created. */ cusip?: string | undefined; /** * A plain-text description of the asset, specified by the issuer. */ description?: string | undefined; /** * Indicates whether the asset distributes a dividend. */ dividendEnabled?: boolean | undefined; /** * Indicates whether the asset allows initial subscriptions to new investors. */ initialSubscriptionAllowed?: boolean | undefined; /** * The ISIN of the asset. It is a twelve-character alphanumeric code used to uniquely identify a security globally, as well as facilitate clearing, reporting, and settlement of trades defined by [ISO 6166](https://en.wikipedia.org/wiki/International_Securities_Identification_Number). * * @remarks * * An ISIN consists of: - A two-letter country code. - A nine-character alphanumeric security identifier (National Securities Identifying Number or NSIN). - A single check digit. * * Not all alternative investment assets have an ISIN. */ isin?: string | undefined; /** * The issuer entity of the alternative investment asset. */ issuer?: Issuer | null | undefined; /** * The Unicode CLDR region code of the issuing region (ex: US). */ issuingRegionCode?: string | undefined; /** * The maximum number of shares allowed to purchase in a single order for this asset. */ maximumSubscriptionQuantity?: number | undefined; /** * The minimum purchase amount required for an initial order of this asset. Value is in USD. */ minimumInitialSubscriptionAmount?: MinimumInitialSubscriptionAmount | null | undefined; /** * The minimum number of shares allowed to purchase in a single order for this asset. */ minimumSubscriptionQuantity?: number | undefined; /** * The minimum purchase amount required for subsequent orders of this asset. Value is in USD. */ minimumSubsequentSubscriptionAmount?: MinimumSubsequentSubscriptionAmount | null | undefined; /** * The system-generated resource name of the alternative investment asset. Format: assets/{asset}/alternativeInvestment Note that `{asset}` will be the `asset_id` value. */ name?: string | undefined; /** * Indicates whether non-retirement accounts (ex: individual) are eligible to hold the alternative investment asset. - If `TRUE` then non-retirement accounts are eligible to hold the asset. - If `FALSE` then non-retirement accounts are not eligible to hold the asset. */ nonRetirementEligible?: boolean | undefined; /** * The fee amount charged per share of the Alternative Investment in USD. This is included in current price. */ perShareFeeAmount?: PerShareFeeAmount | null | undefined; /** * The ID of the Pre IPO Company associated with the Alternative Investment. Not all Alternative Investments are associated with a Pre IPO Company. */ preIpoCompanyId?: string | undefined; /** * Indicates the current state of the asset record. The record state identifies which record types the asset allows. */ recordState?: RecordStateOpen | undefined; /** * Indicates whether the asset is allowed to be redeemed. */ redeemable?: boolean | undefined; /** * Indicates how frequently an account can redeem the asset. */ redemptionFrequency?: RedemptionFrequencyOpen | undefined; /** * Indicates whether the asset allows reinvestment distributions. * * @remarks * * If `TRUE` the alternative order request can specify `REINVESTMENT` as the `distribution type`. */ reinvestmentDistributionAllowed?: boolean | undefined; /** * Indicates whether retirement accounts (ex: IRA) are eligible to hold the asset. - If `TRUE` then retirement accounts are eligible to hold the asset. - If `FALSE` then retirement accounts are not eligible to hold the asset. */ retirementEligible?: boolean | undefined; /** * The asset’s designated share class. */ shareClass?: string | undefined; /** * The asset’s state in the Apex alternative investment platform. */ state?: AlternativeInvestmentStateOpen | undefined; /** * The asset’s strategy as specified by the issuer. */ strategy?: StrategyOpen | undefined; /** * Indicates how frequently the asset will accept subscriptions (that is, how often an account is allowed to buy the asset). */ subscriptionFrequency?: SubscriptionFrequencyOpen | undefined; /** * The process used for subscriptions orders of this asset. */ subscriptionOrderProcess?: SubscriptionOrderProcessOpen | undefined; /** * Indicates whether the asset allows subsequent purchase orders for existing investors. */ subsequentSubscriptionAllowed?: boolean | undefined; /** * The asset’s tax reporting structure. */ taxReportingStructure?: TaxReportingStructureOpen | undefined; /** * The name of the asset, in plain text, as specified by the issuer. */ title?: string | undefined; /** * The type of alternative investment asset. */ type?: AlternativeInvestmentTypeOpen | undefined; }; /** @internal */ export declare const CurrentPrice$inboundSchema: z.ZodType; /** @internal */ export type CurrentPrice$Outbound = { value?: string | undefined; }; /** @internal */ export declare const CurrentPrice$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 CurrentPrice$ { /** @deprecated use `CurrentPrice$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CurrentPrice$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CurrentPrice$Outbound` instead. */ type Outbound = CurrentPrice$Outbound; } export declare function currentPriceToJSON(currentPrice: CurrentPrice): string; export declare function currentPriceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AlternativeInvestmentMailingAddress$inboundSchema: z.ZodType; /** @internal */ export type AlternativeInvestmentMailingAddress$Outbound = { address_lines?: Array | undefined; administrative_area?: string | undefined; language_code?: string | undefined; locality?: string | undefined; organization?: string | undefined; postal_code?: string | undefined; recipients?: Array | undefined; region_code?: string | undefined; revision?: number | undefined; sorting_code?: string | undefined; sublocality?: string | undefined; }; /** @internal */ export declare const AlternativeInvestmentMailingAddress$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 AlternativeInvestmentMailingAddress$ { /** @deprecated use `AlternativeInvestmentMailingAddress$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentMailingAddress$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentMailingAddress$Outbound` instead. */ type Outbound = AlternativeInvestmentMailingAddress$Outbound; } export declare function alternativeInvestmentMailingAddressToJSON(alternativeInvestmentMailingAddress: AlternativeInvestmentMailingAddress): string; export declare function alternativeInvestmentMailingAddressFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PhysicalAddress$inboundSchema: z.ZodType; /** @internal */ export type PhysicalAddress$Outbound = { address_lines?: Array | undefined; administrative_area?: string | undefined; language_code?: string | undefined; locality?: string | undefined; organization?: string | undefined; postal_code?: string | undefined; recipients?: Array | undefined; region_code?: string | undefined; revision?: number | undefined; sorting_code?: string | undefined; sublocality?: string | undefined; }; /** @internal */ export declare const PhysicalAddress$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 PhysicalAddress$ { /** @deprecated use `PhysicalAddress$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PhysicalAddress$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PhysicalAddress$Outbound` instead. */ type Outbound = PhysicalAddress$Outbound; } export declare function physicalAddressToJSON(physicalAddress: PhysicalAddress): string; export declare function physicalAddressFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AlternativeInvestmentRegistrationType$inboundSchema: z.ZodType; /** @internal */ export declare const AlternativeInvestmentRegistrationType$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 AlternativeInvestmentRegistrationType$ { /** @deprecated use `AlternativeInvestmentRegistrationType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentRegistrationType$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const AlternativeInvestmentIssuerType$inboundSchema: z.ZodType; /** @internal */ export declare const AlternativeInvestmentIssuerType$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 AlternativeInvestmentIssuerType$ { /** @deprecated use `AlternativeInvestmentIssuerType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentIssuerType$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const Issuer$inboundSchema: z.ZodType; /** @internal */ export type Issuer$Outbound = { description?: string | undefined; emails?: Array | undefined; incorporated_administrative_area?: string | undefined; incorporated_region_code?: string | undefined; mailing_address?: AlternativeInvestmentMailingAddress$Outbound | null | undefined; manager_crds?: Array | undefined; phone_numbers?: Array | undefined; physical_address?: PhysicalAddress$Outbound | null | undefined; registration_type?: string | undefined; title?: string | undefined; type?: string | undefined; }; /** @internal */ export declare const Issuer$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 Issuer$ { /** @deprecated use `Issuer$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Issuer$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Issuer$Outbound` instead. */ type Outbound = Issuer$Outbound; } export declare function issuerToJSON(issuer: Issuer): string; export declare function issuerFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MinimumInitialSubscriptionAmount$inboundSchema: z.ZodType; /** @internal */ export type MinimumInitialSubscriptionAmount$Outbound = { value?: string | undefined; }; /** @internal */ export declare const MinimumInitialSubscriptionAmount$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 MinimumInitialSubscriptionAmount$ { /** @deprecated use `MinimumInitialSubscriptionAmount$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MinimumInitialSubscriptionAmount$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MinimumInitialSubscriptionAmount$Outbound` instead. */ type Outbound = MinimumInitialSubscriptionAmount$Outbound; } export declare function minimumInitialSubscriptionAmountToJSON(minimumInitialSubscriptionAmount: MinimumInitialSubscriptionAmount): string; export declare function minimumInitialSubscriptionAmountFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MinimumSubsequentSubscriptionAmount$inboundSchema: z.ZodType; /** @internal */ export type MinimumSubsequentSubscriptionAmount$Outbound = { value?: string | undefined; }; /** @internal */ export declare const MinimumSubsequentSubscriptionAmount$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 MinimumSubsequentSubscriptionAmount$ { /** @deprecated use `MinimumSubsequentSubscriptionAmount$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MinimumSubsequentSubscriptionAmount$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MinimumSubsequentSubscriptionAmount$Outbound` instead. */ type Outbound = MinimumSubsequentSubscriptionAmount$Outbound; } export declare function minimumSubsequentSubscriptionAmountToJSON(minimumSubsequentSubscriptionAmount: MinimumSubsequentSubscriptionAmount): string; export declare function minimumSubsequentSubscriptionAmountFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PerShareFeeAmount$inboundSchema: z.ZodType; /** @internal */ export type PerShareFeeAmount$Outbound = { value?: string | undefined; }; /** @internal */ export declare const PerShareFeeAmount$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 PerShareFeeAmount$ { /** @deprecated use `PerShareFeeAmount$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PerShareFeeAmount$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PerShareFeeAmount$Outbound` instead. */ type Outbound = PerShareFeeAmount$Outbound; } export declare function perShareFeeAmountToJSON(perShareFeeAmount: PerShareFeeAmount): string; export declare function perShareFeeAmountFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RecordState$inboundSchema: z.ZodType; /** @internal */ export declare const RecordState$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 RecordState$ { /** @deprecated use `RecordState$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RecordState$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const RedemptionFrequency$inboundSchema: z.ZodType; /** @internal */ export declare const RedemptionFrequency$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 RedemptionFrequency$ { /** @deprecated use `RedemptionFrequency$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RedemptionFrequency$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const AlternativeInvestmentState$inboundSchema: z.ZodType; /** @internal */ export declare const AlternativeInvestmentState$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 AlternativeInvestmentState$ { /** @deprecated use `AlternativeInvestmentState$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentState$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const Strategy$inboundSchema: z.ZodType; /** @internal */ export declare const Strategy$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 Strategy$ { /** @deprecated use `Strategy$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Strategy$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const SubscriptionFrequency$inboundSchema: z.ZodType; /** @internal */ export declare const SubscriptionFrequency$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 SubscriptionFrequency$ { /** @deprecated use `SubscriptionFrequency$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SubscriptionFrequency$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const SubscriptionOrderProcess$inboundSchema: z.ZodType; /** @internal */ export declare const SubscriptionOrderProcess$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 SubscriptionOrderProcess$ { /** @deprecated use `SubscriptionOrderProcess$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SubscriptionOrderProcess$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const TaxReportingStructure$inboundSchema: z.ZodType; /** @internal */ export declare const TaxReportingStructure$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 TaxReportingStructure$ { /** @deprecated use `TaxReportingStructure$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TaxReportingStructure$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const AlternativeInvestmentType$inboundSchema: z.ZodType; /** @internal */ export declare const AlternativeInvestmentType$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 AlternativeInvestmentType$ { /** @deprecated use `AlternativeInvestmentType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentType$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const AlternativeInvestment$inboundSchema: z.ZodType; /** @internal */ export type AlternativeInvestment$Outbound = { asset_id?: string | undefined; cash_distribution_allowed?: boolean | undefined; current_price?: CurrentPrice$Outbound | null | undefined; cusip?: string | undefined; description?: string | undefined; dividend_enabled?: boolean | undefined; initial_subscription_allowed?: boolean | undefined; isin?: string | undefined; issuer?: Issuer$Outbound | null | undefined; issuing_region_code?: string | undefined; maximum_subscription_quantity?: number | undefined; minimum_initial_subscription_amount?: MinimumInitialSubscriptionAmount$Outbound | null | undefined; minimum_subscription_quantity?: number | undefined; minimum_subsequent_subscription_amount?: MinimumSubsequentSubscriptionAmount$Outbound | null | undefined; name?: string | undefined; non_retirement_eligible?: boolean | undefined; per_share_fee_amount?: PerShareFeeAmount$Outbound | null | undefined; pre_ipo_company_id?: string | undefined; record_state?: string | undefined; redeemable?: boolean | undefined; redemption_frequency?: string | undefined; reinvestment_distribution_allowed?: boolean | undefined; retirement_eligible?: boolean | undefined; share_class?: string | undefined; state?: string | undefined; strategy?: string | undefined; subscription_frequency?: string | undefined; subscription_order_process?: string | undefined; subsequent_subscription_allowed?: boolean | undefined; tax_reporting_structure?: string | undefined; title?: string | undefined; type?: string | undefined; }; /** @internal */ export declare const AlternativeInvestment$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 AlternativeInvestment$ { /** @deprecated use `AlternativeInvestment$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestment$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestment$Outbound` instead. */ type Outbound = AlternativeInvestment$Outbound; } export declare function alternativeInvestmentToJSON(alternativeInvestment: AlternativeInvestment): string; export declare function alternativeInvestmentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=alternativeinvestment.d.ts.map