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

import Foundation
import Get
import URLQueryEncoder

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

    public struct Withdraw {
        /// Path: `/api/marketplace/applications/{application_id}/withdraw`
        public let path: String

        /// Withdraw Application
        ///
        /// Withdraw an application (fulfiller only).
        public var post: Request<GenAPI.ApplicationResponse> {
            Request(path: path, method: "POST", id: "studio_api_marketplace_api_withdraw_application")
        }
    }
}
