export type Result = { code: number; msg: string; }; export interface RegionInterface { defaultCurrencyId: string; regionId: string; regionName: string; defaultFeeTaxPercent: number | null; } export interface UiCultureInterface { currency: string; currencySign: string; dateFormat: string; datetimeFormat: string; datepickerFormat: string; timeZone: string; dateTimeWithZone: string; momentTZ: string; } export interface BankDetailsCurrencyInterface { countryId: string; currencyId: string; }