cloudflare/cloudflare-typescript

Public

mirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v3.0.0-beta.13

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/resources/billing/billing.ts

13lines · modecode

1// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
3import { APIResource } from 'cloudflare/resource';
4import * as ProfilesAPI from 'cloudflare/resources/billing/profiles';
5
6export class Billing extends APIResource {
7 profiles: ProfilesAPI.Profiles = new ProfilesAPI.Profiles(this._client);
8}
9
10export namespace Billing {
11 export import Profiles = ProfilesAPI.Profiles;
12 export import ProfileGetResponse = ProfilesAPI.ProfileGetResponse;
13}
14