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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Billing {
    public var credits: Credits {
        Credits(path: path + "/credits")
    }

    public struct Credits {
        /// Path: `/api/billing/credits`
        public let path: String

        /// Get Credits Remaining
        public var get: Request<GenAPI.CreditsRemainingResponse> {
            Request(path: path, method: "GET", id: "studio_api_bots_billing_api_get_credits_remaining")
        }
    }
}
