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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Generate.LyricsPair {
    public var rate: Rate {
        Rate(path: path + "/rate")
    }

    public struct Rate {
        /// Path: `/api/generate/lyrics-pair/rate`
        public let path: String

        /// Rate Lyrics Pair
        public func post(_ body: GenAPI.LyricsPairRatingSpec) -> Request<Void> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_generate_api_rate_lyrics_pair")
        }
    }
}
