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

import Foundation

public struct RemixAction: RawRepresentable, Codable, Equatable {
    public let rawValue: String

    public init(rawValue: String) {
        self.rawValue = rawValue
    }

    public static let extend = Self(rawValue: "extend")
    public static let cover = Self(rawValue: "cover")
    public static let useStylesLyrics = Self(rawValue: "use_styles_lyrics")
    public static let speed = Self(rawValue: "speed")
}
