Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

EndpointResult

Properties

Name Type Description Notes
items List[Endpoint] [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.endpoint_result import EndpointResult

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

# convert the object into a dict
endpoint_result_dict = endpoint_result_instance.to_dict()
# create an instance of EndpointResult from a dict
endpoint_result_from_dict = EndpointResult.from_dict(endpoint_result_dict)

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