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

import Foundation

public struct PollEntityResponse: Codable, Equatable {
    public var batchInfo: BatchInfo
    /// HistoryEntity
    public var entity: HistoryEntity

    public init(batchInfo: BatchInfo, entity: HistoryEntity) {
        self.batchInfo = batchInfo
        self.entity = entity
    }
}
