Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.37 KB

File metadata and controls

33 lines (24 loc) · 1.37 KB

InfrastructureEntitiesResult

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]