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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Gen.WithClipId.AlignedLyrics {
    public var v3: V3 {
        V3(path: path + "/v3")
    }

    public struct V3 {
        /// Path: `/api/gen/{clip_id}/aligned_lyrics/v3`
        public let path: String

        /// Get Lyrics Alignment V3
        public var get: Request<GenAPI.AlignedLyricsV3Schema> {
            Request(path: path, method: "GET", id: "studio_api_bots_gen_api_get_lyrics_alignment_v3")
        }

        /// Do Aligned Lyrics V3
        public func post(_ body: GenAPI.AlignedLyricsV3Spec) -> Request<GenAPI.AlignedLyricsV3Schema> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_gen_api_do_aligned_lyrics_v3")
        }
    }
}
