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

import Foundation

public struct ExternalStemsSpec: Codable, Equatable {
    public var clipId: String
    public var stemTasks: [String]
    public var stemTypeCfgScales: [Double]
    public var stemTypeIds: [Int]

    public init(clipId: String, stemTasks: [String], stemTypeCfgScales: [Double], stemTypeIds: [Int]) {
        self.clipId = clipId
        self.stemTasks = stemTasks
        self.stemTypeCfgScales = stemTypeCfgScales
        self.stemTypeIds = stemTypeIds
    }
}
