- Hands-On Serverless Applications with Kotlin
- Hardik Trivedi Ameya Kulkarni
- 42字
- 2025-02-26 15:24:32
PollDetails
PollDetails is a composite object which has Poll, RespondentDetails, and PollResponseStatistics embedded. This models the API response for fetching the details of the polls:
{
"type":"object",
"properties":{
"createdBy":{
"type":"object",
"$ref":"/#definitions/RespondentDetails"
},
"poll":{
"type":"object",
"$ref":"/#definitions/Poll"
},
"statistics":{
"type":"array",
"$ref":"/#definitions/PollResponseStatistics"
}
}
}