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

import Foundation

public struct RadioPromptChatMessage: Codable, Equatable {
    public var instrumental: Bool
    public var isReady: Bool
    public var prompt: String
    public var role: String
    public var searchKeywords: [String]?
    public var shouldGen: Bool

    public init(instrumental: Bool, isReady: Bool, prompt: String, role: String, searchKeywords: [String]? = nil, shouldGen: Bool) {
        self.instrumental = instrumental
        self.isReady = isReady
        self.prompt = prompt
        self.role = role
        self.searchKeywords = searchKeywords
        self.shouldGen = shouldGen
    }
}
