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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Generate {
    public var lyricsInfill: LyricsInfill {
        LyricsInfill(path: path + "/lyrics-infill")
    }

    public struct LyricsInfill {
        /// Path: `/api/generate/lyrics-infill`
        public let path: String

        /// Run Lyrics Infill
        public func post(_ body: GenAPI.InfillLyricsSpec) -> Request<GenAPI.InfillLyricsResult> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_generate_api_run_lyrics_infill")
        }
    }
}
