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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Contests.Landing {
    public func contestIdentifier(_ contestIdentifier: String) -> WithContestIdentifier {
        WithContestIdentifier(path: "\(path)/\(contestIdentifier)")
    }

    public struct WithContestIdentifier {
        /// Path: `/api/contests/landing/{contest_identifier}`
        public let path: String

        /// Get Contest Landing Page
        public var get: Request<GenAPI.ContestLandingPageResponse> {
            Request(path: path, method: "GET", id: "studio_api_contests_api_get_contest_landing_page")
        }
    }
}
