2.3.13 inframetrics_equity_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 equity universe.

 

Example

Python
response = await service.inframetrics_equity_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
#                     },
#                     ...
#             },
#             ...
#         ]
#     }
# }