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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Billing.PurchaseInfo {
    public func purchaseId(_ purchaseId: String) -> WithPurchaseId {
        WithPurchaseId(path: "\(path)/\(purchaseId)")
    }

    public struct WithPurchaseId {
        /// Path: `/api/billing/purchase-info/{purchase_id}`
        public let path: String

        /// Get Purchase Info Status
        public var get: Request<GenAPI.PurchaseStatusSchemaResponse> {
            Request(path: path, method: "GET", id: "studio_api_bots_billing_api_get_purchase_info_status")
        }
    }
}
