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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Challenge {
    public var progress: Progress {
        Progress(path: path + "/progress")
    }

    public struct Progress {
        /// Path: `/api/challenge/progress`
        public let path: String

        /// Get User Challenges Progress
        public var get: Request<GenAPI.UserChallengesSchema> {
            Request(path: path, method: "GET", id: "studio_api_challenge_api_get_user_challenges_progress")
        }
    }
}
