Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | export type TEnterpriseStats = {
accID: number;
parentAccID: number;
accTypeName: string;
createdAt: number;
updatedAt: number;
name: string;
imageURL: string;
watchlist: false;
totalMerchants: number;
activeMerchants: number;
approvedMerchants: number;
pendingMerchants: number;
status: string;
totalProcessed: number;
transactionsCount: number;
};
export enum ConfigTabs {
GLOBAL_FEES_TAB = "Global Fees",
MCC_TAB = "Merchant Category Codes (MCC)",
}
export type ConfigTabType = `${ConfigTabs}`;
|