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] |
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)