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"; /** * The specified account’s current accreditation type. */ export declare enum AccreditationType { AccreditationTypeUnspecified = "ACCREDITATION_TYPE_UNSPECIFIED", NetWorthGt1M = "NET_WORTH_GT_1M", IndividualIncomeGt200K = "INDIVIDUAL_INCOME_GT_200K", JointIncomeGt300K = "JOINT_INCOME_GT_300K", ProfessionDesignation = "PROFESSION_DESIGNATION", TrustGt5M = "TRUST_GT_5M", GrantorsAccredited = "GRANTORS_ACCREDITED", EquityOwnersAccredited = "EQUITY_OWNERS_ACCREDITED", TotalAssetsGt5M = "TOTAL_ASSETS_GT_5M", InvestmentCompany = "INVESTMENT_COMPANY", SecOrExemptAdvisor = "SEC_OR_EXEMPT_ADVISOR", KnowledgeableEmployee = "KNOWLEDGEABLE_EMPLOYEE", KnowledgeableExecutive = "KNOWLEDGEABLE_EXECUTIVE", FamilyOfficeGt5M = "FAMILY_OFFICE_GT_5M", NotAccredited = "NOT_ACCREDITED" } /** * The specified account’s current accreditation type. */ export type AccreditationTypeOpen = OpenEnum; /** * An account accreditation */ export type AccountAccreditation = { /** * The ID of the account specified in the request. */ accountId?: string | undefined; /** * The specified account’s current accreditation type. */ accreditationType?: AccreditationTypeOpen | undefined; /** * The resource name of the account accreditation. Note `{account}` will be the `account_id` value. * * @remarks * * Format: accounts/{account}/accreditation */ name?: string | undefined; /** * The date and time when the accreditation was last set or updated. Uses [ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601). */ updateTime?: Date | null | undefined; }; /** @internal */ export declare const AccreditationType$inboundSchema: z.ZodType; /** @internal */ export declare const AccreditationType$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 AccreditationType$ { /** @deprecated use `AccreditationType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccreditationType$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const AccountAccreditation$inboundSchema: z.ZodType; /** @internal */ export type AccountAccreditation$Outbound = { account_id?: string | undefined; accreditation_type?: string | undefined; name?: string | undefined; update_time?: string | null | undefined; }; /** @internal */ export declare const AccountAccreditation$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 AccountAccreditation$ { /** @deprecated use `AccountAccreditation$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountAccreditation$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountAccreditation$Outbound` instead. */ type Outbound = AccountAccreditation$Outbound; } export declare function accountAccreditationToJSON(accountAccreditation: AccountAccreditation): string; export declare function accountAccreditationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountaccreditation.d.ts.map