@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
29 lines (28 loc) • 717 B
TypeScript
import { BaseEntity } from "./base.entity";
import { User } from "./user.entity";
export declare enum BankAccountTypeEnum {
PRIMARY = "PRIMARY",
SECONDARY = "SECONDARY"
}
export declare enum BankAccountScopeEnum {
DOMESTIC = "DOMESTIC",
INTERNATIONAL = "INTERNATIONAL"
}
export declare class BankDetail extends BaseEntity {
userId: number;
user: User;
name: string;
mobileCode: string;
mobile: string;
email: string;
address: string;
accountNumber: string;
bankName: string;
ifscCode: string;
branchName: string;
routingNo: string;
abaNumber: string;
iban: string;
accountType: BankAccountTypeEnum;
accountScope: BankAccountScopeEnum;
}