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

import Foundation

public struct ConversationResponse: Codable, Equatable {
    public var conversation: String
    public var instrumental: Bool
    public var isReady: Bool
    public var radioId: String
    public var searchKeywords: [String]?
    public var shouldGen: Bool

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