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

import Foundation

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

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

    public static let bottomLeftLine = Self(rawValue: "bottom_left_line")
    public static let bottomLeftWord = Self(rawValue: "bottom_left_word")
    public static let centeredLine = Self(rawValue: "centered_line")
    public static let centeredWord = Self(rawValue: "centered_word")
}
