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