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

import Foundation

/// Schema for lyrics generation response with simplified fields.
public struct AnonymousLyricsResponseSchema: Codable, Equatable {
    public var genreTags: [String]?
    public var lyrics: String
    public var title: String

    public init(genreTags: [String]? = nil, lyrics: String, title: String) {
        self.genreTags = genreTags
        self.lyrics = lyrics
        self.title = title
    }
}
