@cranberry-money/shared-types
Version:
Shared TypeScript type definitions for Blueberry platform
12 lines • 578 B
TypeScript
import type { BaseEntity } from '../common';
export interface FinancialProfile extends BaseEntity {
userProfile: string;
occupation: string | null;
sourceOfFunds: string[];
sourceOfFundsOtherText: string | null;
intendedUse: string | null;
intendedUseOtherText: string | null;
}
export type CreateFinancialProfile = Omit<FinancialProfile, 'uuid' | 'createdAt' | 'updatedAt' | 'userProfile'>;
export type UpdateFinancialProfile = Partial<Omit<FinancialProfile, 'uuid' | 'createdAt' | 'updatedAt' | 'userProfile'>>;
//# sourceMappingURL=investment.d.ts.map