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

import Foundation

public struct HiveModerationResponseSchema: Codable, Equatable, Identifiable {
    public var createdAt: Date
    public var id: UUID
    public var response: [String: AnyJSON]
    public var updatedAt: Date
    public var videoUploadId: UUID

    public init(createdAt: Date, id: UUID, response: [String: AnyJSON], updatedAt: Date, videoUploadId: UUID) {
        self.createdAt = createdAt
        self.id = id
        self.response = response
        self.updatedAt = updatedAt
        self.videoUploadId = videoUploadId
    }
}
