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 new accreditation type for the specified account. */ export declare enum SetAccountAccreditationTypeRequestCreateAccreditationType { 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 new accreditation type for the specified account. */ export type SetAccountAccreditationTypeRequestCreateAccreditationTypeOpen = OpenEnum; /** * Request for setting an account's accreditation type */ export type SetAccountAccreditationTypeRequestCreate = { /** * The new accreditation type for the specified account. */ accreditationType: SetAccountAccreditationTypeRequestCreateAccreditationTypeOpen; /** * The resource name of the account accreditation. Note `{account}` will be the `account_id` value. * * @remarks * * Format: accounts/{account}/accreditation */ name: string; }; /** @internal */ export declare const SetAccountAccreditationTypeRequestCreateAccreditationType$inboundSchema: z.ZodType; /** @internal */ export declare const SetAccountAccreditationTypeRequestCreateAccreditationType$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 SetAccountAccreditationTypeRequestCreateAccreditationType$ { /** @deprecated use `SetAccountAccreditationTypeRequestCreateAccreditationType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SetAccountAccreditationTypeRequestCreateAccreditationType$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const SetAccountAccreditationTypeRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type SetAccountAccreditationTypeRequestCreate$Outbound = { accreditation_type: string; name: string; }; /** @internal */ export declare const SetAccountAccreditationTypeRequestCreate$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 SetAccountAccreditationTypeRequestCreate$ { /** @deprecated use `SetAccountAccreditationTypeRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SetAccountAccreditationTypeRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SetAccountAccreditationTypeRequestCreate$Outbound` instead. */ type Outbound = SetAccountAccreditationTypeRequestCreate$Outbound; } export declare function setAccountAccreditationTypeRequestCreateToJSON(setAccountAccreditationTypeRequestCreate: SetAccountAccreditationTypeRequestCreate): string; export declare function setAccountAccreditationTypeRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=setaccountaccreditationtyperequestcreate.d.ts.map