@cranberry-money/shared-types
Version:
Shared TypeScript type definitions for Blueberry platform
12 lines • 471 B
TypeScript
export interface InvestmentPreference {
uuid: string;
userProfile: string;
investmentHorizon: string;
riskTolerance: string;
investmentExperience: string;
investmentAmount: string;
sourceOfFunds: string[];
}
export type CreateInvestmentPreference = Omit<InvestmentPreference, 'uuid' | 'userProfile'>;
export type UpdateInvestmentPreference = Partial<Omit<InvestmentPreference, 'uuid' | 'userProfile'>>;
//# sourceMappingURL=investment.d.ts.map