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

import Foundation

/// How the user chose to generate the Vox Persona.
public struct VoxPersonaSource: RawRepresentable, Codable, Equatable {
    public let rawValue: String

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

    public static let randomSong = Self(rawValue: "random_song")
    public static let happyBirthday = Self(rawValue: "happy_birthday")
    public static let randomLyrics = Self(rawValue: "random_lyrics")
    public static let librarySong = Self(rawValue: "library_song")
}
