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

import Foundation

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

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

    public static let likedSongs = Self(rawValue: "liked_songs")
    public static let likedPlaylists = Self(rawValue: "liked_playlists")
    public static let onRepeat = Self(rawValue: "on_repeat")
    public static let mySongs = Self(rawValue: "my_songs")
    public static let recentlyPlayed = Self(rawValue: "recently_played")
    public static let songRadios = Self(rawValue: "song_radios")
    public static let playedPlaylists = Self(rawValue: "played_playlists")
}
