Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.32 KB

File metadata and controls

30 lines (21 loc) · 1.32 KB

BulkAggregateQuestionResultsResponse

Properties

Name Type Description Notes
status APIStatus
data Dict[str, QuestionResultAggregationOverall] Construct a type with a set of properties K of type T

Example

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)

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