@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
20 lines (19 loc) • 452 B
TypeScript
export declare enum BankAccountScope {
DOMESTIC = "DOMESTIC",
INTERNATIONAL = "INTERNATIONAL"
}
export declare class FreelancerBankDetailsDto {
name: string;
mobile: string;
email: string;
address: string;
accountNumber: string;
bankName: string;
branchName: string;
ifscCode: string;
routingNo: string;
abaNumber: string;
iban: string;
accountType: string;
accountScope: BankAccountScope;
}