Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.82 KB

File metadata and controls

37 lines (28 loc) · 1.82 KB

PrepareTestOperation

Properties

Name Type Description Notes
options PreparedTestOptions [optional]
message str An optional message that describes the reason the test ended [optional]
new_state str An optional enum that identifies the current state of the test [optional]
old_state str An optional enum that identifies the previous state of the test [optional]
owner str An optional friendly display name for the user which initiated the operation [optional]
owner_id str An optional identifier that uniquely identifies the user which initiated the operation [optional]
reason str An optional enum that identifies the underlying reason for the test's end [optional]
test_id str The test to which the state change refers [optional]
timestamp int An optional Unix timestamp that indicates when the test state was changed [optional]

Example

from cyperf.models.prepare_test_operation import PrepareTestOperation

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

# convert the object into a dict
prepare_test_operation_dict = prepare_test_operation_instance.to_dict()
# create an instance of PrepareTestOperation from a dict
prepare_test_operation_from_dict = PrepareTestOperation.from_dict(prepare_test_operation_dict)

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