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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Billing {
    public var info: Info {
        Info(path: path + "/info")
    }

    public struct Info {
        /// Path: `/api/billing/info`
        public let path: String

        /// Get Subscription Info
        public var get: Request<GenAPI.SubscriptionInfoResponse> {
            Request(path: path, method: "GET", id: "studio_api_bots_billing_api_get_subscription_info")
        }
    }
}
