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

import Foundation

public struct CreateRadioStationResponse: Codable, Equatable {
    public var answer: String
    public var instrumental: Bool
    public var isReady: Bool
    public var radioStation: RadioStation?
    public var searchKeywords: [String]?
    public var shouldGen: Bool

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