mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
946 B
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)