| Name | Type | Description | Notes |
|---|---|---|---|
| status | APIStatus | ||
| data | Dict[str, QuestionResultAggregationOverall] | Construct a type with a set of properties K of type T |
from client.models.bulk_aggregate_question_results_response import BulkAggregateQuestionResultsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of BulkAggregateQuestionResultsResponse from a JSON string
bulk_aggregate_question_results_response_instance = BulkAggregateQuestionResultsResponse.from_json(json)
# print the JSON string representation of the object
print(BulkAggregateQuestionResultsResponse.to_json())
# convert the object into a dict
bulk_aggregate_question_results_response_dict = bulk_aggregate_question_results_response_instance.to_dict()
# create an instance of BulkAggregateQuestionResultsResponse from a dict
bulk_aggregate_question_results_response_from_dict = BulkAggregateQuestionResultsResponse.from_dict(bulk_aggregate_question_results_response_dict)