thousandeyes-sdk-python/thousandeyes-sdk-test-results/docs/Marker.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

946 B

Marker

Properties

Name Type Description Notes
name str Name assigned to marker in transaction script [optional] [readonly]
duration int Total time recorded by marker in milliseconds [optional] [readonly]

Example

from thousandeyes_sdk.test_results.models.marker import Marker

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

# convert the object into a dict
marker_dict = marker_instance.to_dict()
# create an instance of Marker from a dict
marker_from_dict = Marker.from_dict(marker_dict)

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