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

import Foundation

public struct InfillLyricsSpec: Codable, Equatable {
    public var contextLyricsEdit: String?
    public var contextLyricsPrefix: String?
    public var contextLyricsSuffix: String?
    public var createSessionToken: String?
    public var lyricsModel: String?
    public var prompt: String?
    public var title: String?

    public init(contextLyricsEdit: String? = nil, contextLyricsPrefix: String? = nil, contextLyricsSuffix: String? = nil, createSessionToken: String? = nil, lyricsModel: String? = nil, prompt: String? = nil, title: String? = nil) {
        self.contextLyricsEdit = contextLyricsEdit
        self.contextLyricsPrefix = contextLyricsPrefix
        self.contextLyricsSuffix = contextLyricsSuffix
        self.createSessionToken = createSessionToken
        self.lyricsModel = lyricsModel
        self.prompt = prompt
        self.title = title
    }
}
