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

import Foundation
import Get
import URLQueryEncoder

extension Paths.V2.External.Clips.WithClipId {
    public var alignedLyrics: AlignedLyrics {
        AlignedLyrics(path: path + "/aligned-lyrics")
    }

    public struct AlignedLyrics {
        /// Path: `/api/v2/external/clips/{clip_id}/aligned-lyrics`
        public let path: String

        /// Get Aligned Lyrics External
        ///
        /// Get aligned lyrics for a clip via external API.
        public var get: Request<GenAPI.ExternalAlignedLyricsV2Schema> {
            Request(path: path, method: "GET", id: "studio_api_bots_external_api_get_aligned_lyrics_external")
        }
    }
}
