Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

ChangeEvent

Properties

Name Type Description Notes
dashboard_id str The id of the changed dashboard [optional]
session_id str The id of the session where the change happened [optional]
test_id str The id of the test where the change happened [optional]

Example

from cyperf.models.change_event import ChangeEvent

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

# convert the object into a dict
change_event_dict = change_event_instance.to_dict()
# create an instance of ChangeEvent from a dict
change_event_from_dict = ChangeEvent.from_dict(change_event_dict)

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