Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.32 KB

File metadata and controls

32 lines (23 loc) · 1.32 KB

ApplicationResult

Properties

Name Type Description Notes
items List[Application] Returns a list of Application Perspectives. [optional]
page int Page number you want to retrieve in a request / retrieved in a response. [optional]
page_size int number of elements retrieved in a single query. [optional]
total_hits int The number of results returned. For eg: If `items` has 5 elements, `totalhits` will be 5 [optional]

Example

from instana_client.models.application_result import ApplicationResult

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

# convert the object into a dict
application_result_dict = application_result_instance.to_dict()
# create an instance of ApplicationResult from a dict
application_result_from_dict = ApplicationResult.from_dict(application_result_dict)

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