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": "142",
# "label": "Asia",
# "children": [
# {
# "value": "34",
# "label": "Southern Asia",
# "children": [
# {
# "value": 356,
# "label": "India"
# },
# {
# "value": 364,
# "label": "Iran, Islamic Republic of"
# },
# {
# "value": 586,
# "label": "Pakistan"
# }
# ],
# ...
# },
# ...
# ]
# }
# ]
# }
#}