2.3.10 private_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 equity universe.
Example
PY
response = await service.private_equity_region_tree()
#Sample Response
#{
# "data": {
# "results": [
# {
# "value": "ASI",
# "label": "Asia",
# "children": [
# {
# "value": "SAS",
# "label": "Southern Asia",
# "children": [
# {
# "value": "IND",
# "label": "India"
# },
# {
# "value": "IRN",
# "label": "Iran, Islamic Republic of"
# },
# {
# "value": "PAK",
# "label": "Pakistan"
# }
# ],
# ...
# },
# ...
# ]
# }
# ]
# }
#}