cloudflare/cloudflare-typescript
Publicmirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable
src/resources/billing/billing.ts
13lines · modecode
| 1 | // File generated from our OpenAPI spec by Stainless. |
| 2 | |
| 3 | import { APIResource } from 'cloudflare/resource'; |
| 4 | import * as ProfilesAPI from 'cloudflare/resources/billing/profiles'; |
| 5 | |
| 6 | export class Billing extends APIResource { |
| 7 | profiles: ProfilesAPI.Profiles = new ProfilesAPI.Profiles(this._client); |
| 8 | } |
| 9 | |
| 10 | export namespace Billing { |
| 11 | export import Profiles = ProfilesAPI.Profiles; |
| 12 | export import ProfileGetResponse = ProfilesAPI.ProfileGetResponse; |
| 13 | } |
| 14 | |