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

import Foundation

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

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

    public static let add = Self(rawValue: "add")
    public static let remove = Self(rawValue: "remove")
    public static let removeById = Self(rawValue: "remove_by_id")
    public static let reorder = Self(rawValue: "reorder")
}
