cloudflare
Version:
The official TypeScript library for the Cloudflare API
17 lines • 781 B
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from 'cloudflare/resource';
import * as HistoryAPI from 'cloudflare/resources/user/billing/history';
import * as ProfileAPI from 'cloudflare/resources/user/billing/profile';
export class Billing extends APIResource {
constructor() {
super(...arguments);
this.history = new HistoryAPI.History(this._client);
this.profile = new ProfileAPI.Profile(this._client);
}
}
(function (Billing) {
Billing.History = HistoryAPI.History;
Billing.BillingHistoriesV4PagePaginationArray = HistoryAPI.BillingHistoriesV4PagePaginationArray;
Billing.Profile = ProfileAPI.Profile;
})(Billing || (Billing = {}));
//# sourceMappingURL=billing.mjs.map