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

import Foundation

public struct UpdateSavedPromptSpec: Codable, Equatable, Identifiable {
    public var gptDescriptionPrompt: String?
    public var id: String?
    public var isPinned: Bool?
    public var lyrics: String?
    public var negativeTags: String?
    /// ControlSlidersSchema
    public var sliders: ControlSlidersSchema?
    public var tags: String?
    public var title: String?

    public init(gptDescriptionPrompt: String? = nil, id: String? = nil, isPinned: Bool? = nil, lyrics: String? = nil, negativeTags: String? = nil, sliders: ControlSlidersSchema? = nil, tags: String? = nil, title: String? = nil) {
        self.gptDescriptionPrompt = gptDescriptionPrompt
        self.id = id
        self.isPinned = isPinned
        self.lyrics = lyrics
        self.negativeTags = negativeTags
        self.sliders = sliders
        self.tags = tags
        self.title = title
    }
}
