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

import Foundation

public struct VideoBatchResponse: Codable, Equatable {
    public var batchId: String
    public var promptText: String
    /// VideoStatus
    public var status: VideoStatus
    public var title: String
    public var videos: [VideoResponse]?
    public var videosVerbose: [VideoVerboseResponse]?

    public init(batchId: String, promptText: String, status: VideoStatus, title: String, videos: [VideoResponse]? = nil, videosVerbose: [VideoVerboseResponse]? = nil) {
        self.batchId = batchId
        self.promptText = promptText
        self.status = status
        self.title = title
        self.videos = videos
        self.videosVerbose = videosVerbose
    }
}
