Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 999 Bytes

File metadata and controls

30 lines (21 loc) · 999 Bytes

ResultsGroup

Properties

Name Type Description Notes
name str The name of the result group [optional] [readonly]
results List[str] The IDs of the results that are part of the group [optional] [readonly]

Example

from cyperf.models.results_group import ResultsGroup

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

# convert the object into a dict
results_group_dict = results_group_instance.to_dict()
# create an instance of ResultsGroup from a dict
results_group_from_dict = ResultsGroup.from_dict(results_group_dict)

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