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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Preferences.ClearTasks {
    public func projectId(_ projectId: Int) -> WithProjectId {
        WithProjectId(path: "\(path)/\(projectId)")
    }

    public struct WithProjectId {
        /// Path: `/api/preferences/clear-tasks/{project_id}`
        public let path: String

        /// Clear Label Maker Tasks
        public var delete: Request<Void> {
            Request(path: path, method: "DELETE", id: "studio_api_preferences_api_clear_label_maker_tasks")
        }
    }
}
