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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Search {
    public var updateLyricsEmbedding: UpdateLyricsEmbedding {
        UpdateLyricsEmbedding(path: path + "/update_lyrics_embedding")
    }

    public struct UpdateLyricsEmbedding {
        /// Path: `/api/search/update_lyrics_embedding`
        public let path: String

        /// Update Lyrics Embedding
        ///
        /// Callback for the lyrics embedding update.
        public var post: Request<Void> {
            Request(path: path, method: "POST", id: "studio_api_search_api_update_lyrics_embedding")
        }
    }
}
