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

import Foundation

public struct GenerateVideoResponse: Codable, Equatable {
    public var batchId: String
    public var status: String
    public var title: String
    public var videoIds: [String]

    public init(batchId: String, status: String, title: String, videoIds: [String]) {
        self.batchId = batchId
        self.status = status
        self.title = title
        self.videoIds = videoIds
    }
}
