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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Sunoverse.EmbedUser {
    public func taskId(_ taskId: String) -> WithTaskId {
        WithTaskId(path: "\(path)/\(taskId)")
    }

    public struct WithTaskId {
        /// Path: `/api/sunoverse/embed-user/{task_id}`
        public let path: String

        /// Get Embed User Status
        ///
        /// Poll the status of an embed user task.
        public var get: Request<GenAPI.EmbedUserTaskResponse> {
            Request(path: path, method: "GET", id: "studio_api_sunoverse_api_get_embed_user_status")
        }
    }
}
