2.3.12 inframetrics_debt_region_tree

Purpose
Presents the list of regions, sub regions and countries in a “tree” view. The tree is derived from the location of companies in our private infrastructure debt universe.

 

Example

Python
response = await service.inframetrics_debt_region_tree()
# Sample Response
# {
#     "data": {
#         "results": [
#             {
#                 "value": "AMR",
#                 "label": "Americas",
#                 "children": [
#                     {
#                         "value": "NAM",
#                         "label": "Northern America",
#                         "children": [
#                             {
#                                 "value": "CAN",
#                                 "label": "Canada"
#                             },
#                             {
#                                 "value": "USA",
#                                 "label": "United States"
#                             }
#                         ],
#                         "popularity": 1
#                     },
#                     ...
#                  ]
#              },
#              ...
#         ]
#     }
# }