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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Preferences {
    public var tasks: Tasks {
        Tasks(path: path + "/tasks")
    }

    public struct Tasks {
        /// Path: `/api/preferences/tasks`
        public let path: String

        /// Get Next Label Maker Task
        public var get: Request<GenAPI.NextLabelMakerTaskResponseSpec> {
            Request(path: path, method: "GET", id: "studio_api_preferences_api_get_next_label_maker_task")
        }
    }
}
