@cranberry-money/shared-types
Version:
Shared TypeScript type definitions for Blueberry platform
11 lines • 406 B
TypeScript
export interface Account {
uuid: string;
accountNumber: string | null;
accountType: string;
activationDate: string | null;
name: string;
userProfile: string;
}
export type CreateAccount = Omit<Account, 'uuid' | 'accountNumber' | 'activationDate'>;
export type UpdateAccount = Partial<Omit<Account, 'uuid' | 'accountNumber' | 'activationDate'>>;
//# sourceMappingURL=account.d.ts.map