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 | 11x 11x 11x | export const ofacResourceTypeMapper = {
"Business Profile": "legal_entities",
"Business Owner": "legal_principals",
"Primary Account Holder": "merchant_owners",
};
export const OFAC_MERCHANT_PANEL_QUERY_FIELD = {
merchant_owners: "ownerOfac",
legal_entities: "entityOfac",
legal_principals: "", //
};
// TODO: will probably need change to get from BE
export const ofacResourceIdMapper = {
"Business Profile": 11,
"Business Owner": 13,
"Primary Account Holder": 26,
};
|