Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

File metadata and controls

33 lines (24 loc) · 1.35 KB

InfrastructureGroupsResult

Properties

Name Type Description Notes
adjusted_timeframe AdjustedTimeframe [optional]
can_load_more bool [optional]
items List[InfrastructureGroup]
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_groups_result import InfrastructureGroupsResult

# TODO update the JSON string below
json = "{}"
# create an instance of InfrastructureGroupsResult from a JSON string
infrastructure_groups_result_instance = InfrastructureGroupsResult.from_json(json)
# print the JSON string representation of the object
print(InfrastructureGroupsResult.to_json())

# convert the object into a dict
infrastructure_groups_result_dict = infrastructure_groups_result_instance.to_dict()
# create an instance of InfrastructureGroupsResult from a dict
infrastructure_groups_result_from_dict = InfrastructureGroupsResult.from_dict(infrastructure_groups_result_dict)

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