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

import Foundation

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

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

    public static let following = Self(rawValue: "following")
    public static let playlist = Self(rawValue: "playlist")
    public static let mySongs = Self(rawValue: "my_songs")
    public static let continueListening = Self(rawValue: "continue_listening")
    public static let likedSongs = Self(rawValue: "liked_songs")
}
