Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.73 KB

ResultCreate.md

File metadata and controls

42 lines (33 loc) · 1.73 KB

ResultCreate

Properties

Name Type Description Notes
id str If passed, used as an idempotency key [optional]
title str
signature str [optional]
testops_id int [optional]
execution ResultExecution
fields ResultCreateFields [optional]
attachments List[str] [optional]
steps List[ResultStep] [optional]
steps_type ResultStepsType [optional]
params Dict[str, str] [optional]
param_groups List[List[str]] List parameter groups by name only. Add their values in the 'params' field [optional]
relations ResultRelations [optional]
message str [optional]
defect bool If true and the result is failed, the defect associated with the result will be created [optional]

Example

from qase.api_client_v2.models.result_create import ResultCreate

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

# convert the object into a dict
result_create_dict = result_create_instance.to_dict()
# create an instance of ResultCreate from a dict
result_create_form_dict = result_create.from_dict(result_create_dict)

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