| Name | Type | Description | Notes |
|---|---|---|---|
| adjusted_timeframe | AdjustedTimeframe | [optional] | |
| can_load_more | bool | [optional] | |
| items | List[InfrastructureItem] | ||
| next | object | cursor to use between successive queries | [optional] |
| total_hits | int | represents the total number of results | [optional] |
from instana_client.models.infrastructure_entities_result import InfrastructureEntitiesResult
# TODO update the JSON string below
json = "{}"
# create an instance of InfrastructureEntitiesResult from a JSON string
infrastructure_entities_result_instance = InfrastructureEntitiesResult.from_json(json)
# print the JSON string representation of the object
print(InfrastructureEntitiesResult.to_json())
# convert the object into a dict
infrastructure_entities_result_dict = infrastructure_entities_result_instance.to_dict()
# create an instance of InfrastructureEntitiesResult from a dict
infrastructure_entities_result_from_dict = InfrastructureEntitiesResult.from_dict(infrastructure_entities_result_dict)