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

import Foundation

public struct PollBatchesRequest: Codable, Equatable {
    public var batchIds: [IdWithType]
    public var entityIds: [IdWithType]?

    public init(batchIds: [IdWithType], entityIds: [IdWithType]? = nil) {
        self.batchIds = batchIds
        self.entityIds = entityIds
    }
}
