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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Marketplace.Applications.WithApplicationId {
    public var accept: Accept {
        Accept(path: path + "/accept")
    }

    public struct Accept {
        /// Path: `/api/marketplace/applications/{application_id}/accept`
        public let path: String

        /// Accept Application
        ///
        /// Accept an application and assign the fulfiller (creator only).
        public var post: Request<GenAPI.ApplicationResponse> {
            Request(path: path, method: "POST", id: "studio_api_marketplace_api_accept_application")
        }
    }
}
