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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Myradio {
    public var songs: Songs {
        Songs(path: path + "/songs")
    }

    public struct Songs {
        /// Path: `/api/myradio/songs`
        public let path: String

        /// Generate Songs For Radio Station
        public func post(_ body: GenAPI.GenerateSongsForRadioStationRequest) -> Request<GenAPI.GenerateSongsForRadioStationResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_radio_api_generate_songs_for_radio_station")
        }
    }
}
