// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct PollBatchesResponse: Codable, Equatable {
    public var batches: [String: [HistoryEntity]]
    public var entities: [String: PollEntityResponse]?

    public init(batches: [String: [HistoryEntity]], entities: [String: PollEntityResponse]? = nil) {
        self.batches = batches
        self.entities = entities
    }
}
