@flexprice/sdk 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +380 -0
- package/dist/ApiClient.js +703 -0
- package/dist/api/AuthApi.js +116 -0
- package/dist/api/CustomersApi.js +373 -0
- package/dist/api/EntitlementsApi.js +291 -0
- package/dist/api/EnvironmentsApi.js +204 -0
- package/dist/api/EventsApi.js +237 -0
- package/dist/api/FeaturesApi.js +252 -0
- package/dist/api/IntegrationsApi.js +189 -0
- package/dist/api/InvoicesApi.js +444 -0
- package/dist/api/MetersApi.js +287 -0
- package/dist/api/PaymentsApi.js +296 -0
- package/dist/api/PlansApi.js +248 -0
- package/dist/api/PricesApi.js +250 -0
- package/dist/api/SecretsApi.js +155 -0
- package/dist/api/SubscriptionsApi.js +383 -0
- package/dist/api/TasksApi.js +254 -0
- package/dist/api/TenantsApi.js +182 -0
- package/dist/api/UsersApi.js +75 -0
- package/dist/api/WalletsApi.js +384 -0
- package/dist/index.js +1154 -0
- package/dist/model/DtoAddress.js +149 -0
- package/dist/model/DtoAggregatedEntitlement.js +123 -0
- package/dist/model/DtoAggregatedFeature.js +138 -0
- package/dist/model/DtoAuthResponse.js +113 -0
- package/dist/model/DtoBillingPeriodInfo.js +114 -0
- package/dist/model/DtoBulkIngestEventRequest.js +130 -0
- package/dist/model/DtoCreateAPIKeyRequest.js +147 -0
- package/dist/model/DtoCreateAPIKeyResponse.js +103 -0
- package/dist/model/DtoCreateCustomerRequest.js +218 -0
- package/dist/model/DtoCreateEntitlementRequest.js +180 -0
- package/dist/model/DtoCreateEnvironmentRequest.js +126 -0
- package/dist/model/DtoCreateFeatureRequest.js +193 -0
- package/dist/model/DtoCreateIntegrationRequest.js +135 -0
- package/dist/model/DtoCreateInvoiceLineItemRequest.js +238 -0
- package/dist/model/DtoCreateInvoiceRequest.js +316 -0
- package/dist/model/DtoCreateMeterRequest.js +183 -0
- package/dist/model/DtoCreatePaymentRequest.js +202 -0
- package/dist/model/DtoCreatePlanEntitlementRequest.js +180 -0
- package/dist/model/DtoCreatePlanPriceRequest.js +318 -0
- package/dist/model/DtoCreatePlanRequest.js +196 -0
- package/dist/model/DtoCreatePriceRequest.js +318 -0
- package/dist/model/DtoCreatePriceTier.js +132 -0
- package/dist/model/DtoCreateSubscriptionRequest.js +244 -0
- package/dist/model/DtoCreateTaskRequest.js +167 -0
- package/dist/model/DtoCreateTenantRequest.js +126 -0
- package/dist/model/DtoCreateWalletRequest.js +216 -0
- package/dist/model/DtoCustomerEntitlementsResponse.js +122 -0
- package/dist/model/DtoCustomerInvoiceSummary.js +165 -0
- package/dist/model/DtoCustomerMultiCurrencyInvoiceSummary.js +134 -0
- package/dist/model/DtoCustomerResponse.js +300 -0
- package/dist/model/DtoCustomerUsageSummaryResponse.js +150 -0
- package/dist/model/DtoEntitlementResponse.js +276 -0
- package/dist/model/DtoEntitlementSource.js +161 -0
- package/dist/model/DtoEnvironmentResponse.js +137 -0
- package/dist/model/DtoEvent.js +159 -0
- package/dist/model/DtoFeatureResponse.js +275 -0
- package/dist/model/DtoFeatureUsageSummary.js +164 -0
- package/dist/model/DtoGetEventsResponse.js +142 -0
- package/dist/model/DtoGetPreviewInvoiceRequest.js +136 -0
- package/dist/model/DtoGetUsageByMeterRequest.js +179 -0
- package/dist/model/DtoGetUsageBySubscriptionRequest.js +144 -0
- package/dist/model/DtoGetUsageBySubscriptionResponse.js +166 -0
- package/dist/model/DtoGetUsageRequest.js +203 -0
- package/dist/model/DtoGetUsageResponse.js +139 -0
- package/dist/model/DtoIngestEventRequest.js +186 -0
- package/dist/model/DtoInvoiceLineItemResponse.js +343 -0
- package/dist/model/DtoInvoiceResponse.js +479 -0
- package/dist/model/DtoLinkedIntegrationsResponse.js +89 -0
- package/dist/model/DtoListCustomersResponse.js +124 -0
- package/dist/model/DtoListEntitlementsResponse.js +124 -0
- package/dist/model/DtoListEnvironmentsResponse.js +134 -0
- package/dist/model/DtoListFeaturesResponse.js +124 -0
- package/dist/model/DtoListInvoicesResponse.js +124 -0
- package/dist/model/DtoListPaymentsResponse.js +124 -0
- package/dist/model/DtoListPlansResponse.js +124 -0
- package/dist/model/DtoListPricesResponse.js +124 -0
- package/dist/model/DtoListSecretsResponse.js +124 -0
- package/dist/model/DtoListSubscriptionPausesResponse.js +118 -0
- package/dist/model/DtoListSubscriptionsResponse.js +124 -0
- package/dist/model/DtoListTasksResponse.js +124 -0
- package/dist/model/DtoListWalletTransactionsResponse.js +124 -0
- package/dist/model/DtoLoginRequest.js +138 -0
- package/dist/model/DtoMeterResponse.js +217 -0
- package/dist/model/DtoPauseSubscriptionRequest.js +171 -0
- package/dist/model/DtoPaymentAttemptResponse.js +191 -0
- package/dist/model/DtoPaymentResponse.js +331 -0
- package/dist/model/DtoPlanResponse.js +269 -0
- package/dist/model/DtoPriceResponse.js +412 -0
- package/dist/model/DtoResumeSubscriptionRequest.js +127 -0
- package/dist/model/DtoSecretResponse.js +200 -0
- package/dist/model/DtoSignUpRequest.js +148 -0
- package/dist/model/DtoSubscriptionPauseResponse.js +300 -0
- package/dist/model/DtoSubscriptionResponse.js +518 -0
- package/dist/model/DtoSubscriptionUsageByMetersResponse.js +165 -0
- package/dist/model/DtoTaskResponse.js +311 -0
- package/dist/model/DtoTenantBillingDetails.js +127 -0
- package/dist/model/DtoTenantBillingUsage.js +124 -0
- package/dist/model/DtoTenantResponse.js +151 -0
- package/dist/model/DtoTopUpWalletRequest.js +185 -0
- package/dist/model/DtoUpdateCustomerRequest.js +195 -0
- package/dist/model/DtoUpdateEntitlementRequest.js +122 -0
- package/dist/model/DtoUpdateEnvironmentRequest.js +101 -0
- package/dist/model/DtoUpdateFeatureRequest.js +135 -0
- package/dist/model/DtoUpdateMeterRequest.js +110 -0
- package/dist/model/DtoUpdatePaymentRequest.js +99 -0
- package/dist/model/DtoUpdatePaymentStatusRequest.js +117 -0
- package/dist/model/DtoUpdatePlanEntitlementRequest.js +193 -0
- package/dist/model/DtoUpdatePlanPriceRequest.js +331 -0
- package/dist/model/DtoUpdatePlanRequest.js +176 -0
- package/dist/model/DtoUpdatePriceRequest.js +111 -0
- package/dist/model/DtoUpdateTaskStatusRequest.js +109 -0
- package/dist/model/DtoUpdateTenantRequest.js +91 -0
- package/dist/model/DtoUpdateWalletRequest.js +150 -0
- package/dist/model/DtoUsageResult.js +97 -0
- package/dist/model/DtoUserResponse.js +115 -0
- package/dist/model/DtoWalletBalanceResponse.js +353 -0
- package/dist/model/DtoWalletResponse.js +252 -0
- package/dist/model/DtoWalletTransactionResponse.js +238 -0
- package/dist/model/ErrorsErrorDetail.js +111 -0
- package/dist/model/ErrorsErrorResponse.js +99 -0
- package/dist/model/MeterAggregation.js +99 -0
- package/dist/model/MeterFilter.js +103 -0
- package/dist/model/PriceJSONBTransformQuantity.js +99 -0
- package/dist/model/PricePrice.js +398 -0
- package/dist/model/PricePriceTier.js +104 -0
- package/dist/model/PriceTransformQuantity.js +99 -0
- package/dist/model/SubscriptionSubscriptionLineItem.js +355 -0
- package/dist/model/SubscriptionSubscriptionPause.js +300 -0
- package/dist/model/TypesAggregationType.js +68 -0
- package/dist/model/TypesAutoTopupTrigger.js +58 -0
- package/dist/model/TypesBillingCadence.js +58 -0
- package/dist/model/TypesBillingModel.js +63 -0
- package/dist/model/TypesBillingPeriod.js +78 -0
- package/dist/model/TypesBillingTier.js +58 -0
- package/dist/model/TypesEntityType.js +63 -0
- package/dist/model/TypesFeatureType.js +63 -0
- package/dist/model/TypesFileType.js +58 -0
- package/dist/model/TypesInvoiceBillingReason.js +68 -0
- package/dist/model/TypesInvoiceCadence.js +58 -0
- package/dist/model/TypesInvoiceStatus.js +63 -0
- package/dist/model/TypesInvoiceType.js +63 -0
- package/dist/model/TypesPaginationResponse.js +101 -0
- package/dist/model/TypesPauseMode.js +63 -0
- package/dist/model/TypesPauseStatus.js +73 -0
- package/dist/model/TypesPaymentDestinationType.js +53 -0
- package/dist/model/TypesPaymentMethodType.js +68 -0
- package/dist/model/TypesPaymentStatus.js +78 -0
- package/dist/model/TypesPriceType.js +58 -0
- package/dist/model/TypesResetUsage.js +58 -0
- package/dist/model/TypesResumeMode.js +63 -0
- package/dist/model/TypesSecretProvider.js +63 -0
- package/dist/model/TypesSecretType.js +63 -0
- package/dist/model/TypesStatus.js +63 -0
- package/dist/model/TypesSubscriptionStatus.js +88 -0
- package/dist/model/TypesTaskStatus.js +68 -0
- package/dist/model/TypesTaskType.js +58 -0
- package/dist/model/TypesTransactionReason.js +88 -0
- package/dist/model/TypesTransactionStatus.js +63 -0
- package/dist/model/TypesTransactionType.js +58 -0
- package/dist/model/TypesWalletConfig.js +91 -0
- package/dist/model/TypesWalletConfigPriceType.js +63 -0
- package/dist/model/TypesWalletStatus.js +63 -0
- package/dist/model/TypesWalletTxReferenceType.js +68 -0
- package/dist/model/TypesWalletType.js +58 -0
- package/dist/model/TypesWindowSize.js +63 -0
- package/package.json +54 -0
package/README.md
ADDED
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
# flexprice-client
|
|
2
|
+
|
|
3
|
+
FlexpriceClient - JavaScript client for flexprice-client
|
|
4
|
+
FlexPrice API Service
|
|
5
|
+
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
6
|
+
|
|
7
|
+
- API version: 1.0
|
|
8
|
+
- Package version: 1.0
|
|
9
|
+
- Generator version: 7.12.0
|
|
10
|
+
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
### For [Node.js](https://nodejs.org/)
|
|
15
|
+
|
|
16
|
+
#### npm
|
|
17
|
+
|
|
18
|
+
To publish the library as a [npm](https://www.npmjs.com/), please follow the procedure in ["Publishing npm packages"](https://docs.npmjs.com/getting-started/publishing-npm-packages).
|
|
19
|
+
|
|
20
|
+
Then install it via:
|
|
21
|
+
|
|
22
|
+
```shell
|
|
23
|
+
npm install flexprice-client --save
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Finally, you need to build the module:
|
|
27
|
+
|
|
28
|
+
```shell
|
|
29
|
+
npm run build
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
##### Local development
|
|
33
|
+
|
|
34
|
+
To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing `package.json` (and this README). Let's call this `JAVASCRIPT_CLIENT_DIR`. Then run:
|
|
35
|
+
|
|
36
|
+
```shell
|
|
37
|
+
npm install
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Next, [link](https://docs.npmjs.com/cli/link) it globally in npm with the following, also from `JAVASCRIPT_CLIENT_DIR`:
|
|
41
|
+
|
|
42
|
+
```shell
|
|
43
|
+
npm link
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
To use the link you just defined in your project, switch to the directory you want to use your flexprice-client from, and run:
|
|
47
|
+
|
|
48
|
+
```shell
|
|
49
|
+
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Finally, you need to build the module:
|
|
53
|
+
|
|
54
|
+
```shell
|
|
55
|
+
npm run build
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
#### git
|
|
59
|
+
|
|
60
|
+
If the library is hosted at a git repository, e.g.https://github.com/flexprice/javascript-sdk
|
|
61
|
+
then install it via:
|
|
62
|
+
|
|
63
|
+
```shell
|
|
64
|
+
npm install flexprice/javascript-sdk --save
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### For browser
|
|
68
|
+
|
|
69
|
+
The library also works in the browser environment via npm and [browserify](http://browserify.org/). After following
|
|
70
|
+
the above steps with Node.js and installing browserify with `npm install -g browserify`,
|
|
71
|
+
perform the following (assuming *main.js* is your entry file):
|
|
72
|
+
|
|
73
|
+
```shell
|
|
74
|
+
browserify main.js > bundle.js
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Then include *bundle.js* in the HTML pages.
|
|
78
|
+
|
|
79
|
+
### Webpack Configuration
|
|
80
|
+
|
|
81
|
+
Using Webpack you may encounter the following error: "Module not found: Error:
|
|
82
|
+
Cannot resolve module", most certainly you should disable AMD loader. Add/merge
|
|
83
|
+
the following section to your webpack config:
|
|
84
|
+
|
|
85
|
+
```javascript
|
|
86
|
+
module: {
|
|
87
|
+
rules: [
|
|
88
|
+
{
|
|
89
|
+
parser: {
|
|
90
|
+
amd: false
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
]
|
|
94
|
+
}
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
## Getting Started
|
|
98
|
+
|
|
99
|
+
Please follow the [installation](#installation) instruction and execute the following JS code:
|
|
100
|
+
|
|
101
|
+
```javascript
|
|
102
|
+
var FlexpriceClient = require('flexprice-client');
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
var api = new FlexpriceClient.AuthApi()
|
|
106
|
+
var login = new FlexpriceClient.DtoLoginRequest(); // {DtoLoginRequest} Login request
|
|
107
|
+
var callback = function(error, data, response) {
|
|
108
|
+
if (error) {
|
|
109
|
+
console.error(error);
|
|
110
|
+
} else {
|
|
111
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
112
|
+
}
|
|
113
|
+
};
|
|
114
|
+
api.authLoginPost(login, callback);
|
|
115
|
+
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
## Documentation for API Endpoints
|
|
119
|
+
|
|
120
|
+
All URIs are relative to */v1*
|
|
121
|
+
|
|
122
|
+
Class | Method | HTTP request | Description
|
|
123
|
+
------------ | ------------- | ------------- | -------------
|
|
124
|
+
*FlexpriceClient.AuthApi* | [**authLoginPost**](docs/AuthApi.md#authLoginPost) | **POST** /auth/login | Login
|
|
125
|
+
*FlexpriceClient.AuthApi* | [**authSignupPost**](docs/AuthApi.md#authSignupPost) | **POST** /auth/signup | Sign up
|
|
126
|
+
*FlexpriceClient.CustomersApi* | [**customersGet**](docs/CustomersApi.md#customersGet) | **GET** /customers | Get customers
|
|
127
|
+
*FlexpriceClient.CustomersApi* | [**customersIdDelete**](docs/CustomersApi.md#customersIdDelete) | **DELETE** /customers/{id} | Delete a customer
|
|
128
|
+
*FlexpriceClient.CustomersApi* | [**customersIdEntitlementsGet**](docs/CustomersApi.md#customersIdEntitlementsGet) | **GET** /customers/{id}/entitlements | Get customer entitlements
|
|
129
|
+
*FlexpriceClient.CustomersApi* | [**customersIdGet**](docs/CustomersApi.md#customersIdGet) | **GET** /customers/{id} | Get a customer
|
|
130
|
+
*FlexpriceClient.CustomersApi* | [**customersIdPut**](docs/CustomersApi.md#customersIdPut) | **PUT** /customers/{id} | Update a customer
|
|
131
|
+
*FlexpriceClient.CustomersApi* | [**customersIdUsageGet**](docs/CustomersApi.md#customersIdUsageGet) | **GET** /customers/{id}/usage | Get customer usage summary
|
|
132
|
+
*FlexpriceClient.CustomersApi* | [**customersLookupLookupKeyGet**](docs/CustomersApi.md#customersLookupLookupKeyGet) | **GET** /customers/lookup/{lookup_key} | Get a customer by lookup key
|
|
133
|
+
*FlexpriceClient.CustomersApi* | [**customersPost**](docs/CustomersApi.md#customersPost) | **POST** /customers | Create a customer
|
|
134
|
+
*FlexpriceClient.EntitlementsApi* | [**entitlementsGet**](docs/EntitlementsApi.md#entitlementsGet) | **GET** /entitlements | Get entitlements
|
|
135
|
+
*FlexpriceClient.EntitlementsApi* | [**entitlementsIdDelete**](docs/EntitlementsApi.md#entitlementsIdDelete) | **DELETE** /entitlements/{id} | Delete an entitlement
|
|
136
|
+
*FlexpriceClient.EntitlementsApi* | [**entitlementsIdGet**](docs/EntitlementsApi.md#entitlementsIdGet) | **GET** /entitlements/{id} | Get an entitlement by ID
|
|
137
|
+
*FlexpriceClient.EntitlementsApi* | [**entitlementsIdPut**](docs/EntitlementsApi.md#entitlementsIdPut) | **PUT** /entitlements/{id} | Update an entitlement
|
|
138
|
+
*FlexpriceClient.EntitlementsApi* | [**entitlementsPost**](docs/EntitlementsApi.md#entitlementsPost) | **POST** /entitlements | Create a new entitlement
|
|
139
|
+
*FlexpriceClient.EntitlementsApi* | [**plansIdEntitlementsGet**](docs/EntitlementsApi.md#plansIdEntitlementsGet) | **GET** /plans/{id}/entitlements | Get plan entitlements
|
|
140
|
+
*FlexpriceClient.EnvironmentsApi* | [**environmentsGet**](docs/EnvironmentsApi.md#environmentsGet) | **GET** /environments | Get environments
|
|
141
|
+
*FlexpriceClient.EnvironmentsApi* | [**environmentsIdGet**](docs/EnvironmentsApi.md#environmentsIdGet) | **GET** /environments/{id} | Get an environment
|
|
142
|
+
*FlexpriceClient.EnvironmentsApi* | [**environmentsIdPut**](docs/EnvironmentsApi.md#environmentsIdPut) | **PUT** /environments/{id} | Update an environment
|
|
143
|
+
*FlexpriceClient.EnvironmentsApi* | [**environmentsPost**](docs/EnvironmentsApi.md#environmentsPost) | **POST** /environments | Create an environment
|
|
144
|
+
*FlexpriceClient.EventsApi* | [**eventsBulkPost**](docs/EventsApi.md#eventsBulkPost) | **POST** /events/bulk | Bulk Ingest events
|
|
145
|
+
*FlexpriceClient.EventsApi* | [**eventsGet**](docs/EventsApi.md#eventsGet) | **GET** /events | Get raw events
|
|
146
|
+
*FlexpriceClient.EventsApi* | [**eventsPost**](docs/EventsApi.md#eventsPost) | **POST** /events | Ingest event
|
|
147
|
+
*FlexpriceClient.EventsApi* | [**eventsUsageMeterPost**](docs/EventsApi.md#eventsUsageMeterPost) | **POST** /events/usage/meter | Get usage by meter
|
|
148
|
+
*FlexpriceClient.EventsApi* | [**eventsUsagePost**](docs/EventsApi.md#eventsUsagePost) | **POST** /events/usage | Get usage statistics
|
|
149
|
+
*FlexpriceClient.FeaturesApi* | [**featuresGet**](docs/FeaturesApi.md#featuresGet) | **GET** /features | List features
|
|
150
|
+
*FlexpriceClient.FeaturesApi* | [**featuresIdDelete**](docs/FeaturesApi.md#featuresIdDelete) | **DELETE** /features/{id} | Delete a feature
|
|
151
|
+
*FlexpriceClient.FeaturesApi* | [**featuresIdGet**](docs/FeaturesApi.md#featuresIdGet) | **GET** /features/{id} | Get a feature by ID
|
|
152
|
+
*FlexpriceClient.FeaturesApi* | [**featuresIdPut**](docs/FeaturesApi.md#featuresIdPut) | **PUT** /features/{id} | Update a feature
|
|
153
|
+
*FlexpriceClient.FeaturesApi* | [**featuresPost**](docs/FeaturesApi.md#featuresPost) | **POST** /features | Create a new feature
|
|
154
|
+
*FlexpriceClient.IntegrationsApi* | [**secretsIntegrationsIdDelete**](docs/IntegrationsApi.md#secretsIntegrationsIdDelete) | **DELETE** /secrets/integrations/{id} | Delete an integration
|
|
155
|
+
*FlexpriceClient.IntegrationsApi* | [**secretsIntegrationsLinkedGet**](docs/IntegrationsApi.md#secretsIntegrationsLinkedGet) | **GET** /secrets/integrations/linked | List linked integrations
|
|
156
|
+
*FlexpriceClient.IntegrationsApi* | [**secretsIntegrationsProviderGet**](docs/IntegrationsApi.md#secretsIntegrationsProviderGet) | **GET** /secrets/integrations/{provider} | Get integration details
|
|
157
|
+
*FlexpriceClient.IntegrationsApi* | [**secretsIntegrationsProviderPost**](docs/IntegrationsApi.md#secretsIntegrationsProviderPost) | **POST** /secrets/integrations/{provider} | Create or update an integration
|
|
158
|
+
*FlexpriceClient.InvoicesApi* | [**customersIdInvoicesSummaryGet**](docs/InvoicesApi.md#customersIdInvoicesSummaryGet) | **GET** /customers/{id}/invoices/summary | Get a customer invoice summary
|
|
159
|
+
*FlexpriceClient.InvoicesApi* | [**invoicesGet**](docs/InvoicesApi.md#invoicesGet) | **GET** /invoices | List invoices
|
|
160
|
+
*FlexpriceClient.InvoicesApi* | [**invoicesIdFinalizePost**](docs/InvoicesApi.md#invoicesIdFinalizePost) | **POST** /invoices/{id}/finalize | Finalize an invoice
|
|
161
|
+
*FlexpriceClient.InvoicesApi* | [**invoicesIdGet**](docs/InvoicesApi.md#invoicesIdGet) | **GET** /invoices/{id} | Get an invoice by ID
|
|
162
|
+
*FlexpriceClient.InvoicesApi* | [**invoicesIdPaymentAttemptPost**](docs/InvoicesApi.md#invoicesIdPaymentAttemptPost) | **POST** /invoices/{id}/payment/attempt | Attempt payment for an invoice
|
|
163
|
+
*FlexpriceClient.InvoicesApi* | [**invoicesIdPaymentPut**](docs/InvoicesApi.md#invoicesIdPaymentPut) | **PUT** /invoices/{id}/payment | Update invoice payment status
|
|
164
|
+
*FlexpriceClient.InvoicesApi* | [**invoicesIdPdfGet**](docs/InvoicesApi.md#invoicesIdPdfGet) | **GET** /invoices/{id}/pdf | Get PDF for an invoice
|
|
165
|
+
*FlexpriceClient.InvoicesApi* | [**invoicesIdVoidPost**](docs/InvoicesApi.md#invoicesIdVoidPost) | **POST** /invoices/{id}/void | Void an invoice
|
|
166
|
+
*FlexpriceClient.InvoicesApi* | [**invoicesPost**](docs/InvoicesApi.md#invoicesPost) | **POST** /invoices | Create a new invoice
|
|
167
|
+
*FlexpriceClient.InvoicesApi* | [**invoicesPreviewPost**](docs/InvoicesApi.md#invoicesPreviewPost) | **POST** /invoices/preview | Get a preview invoice
|
|
168
|
+
*FlexpriceClient.MetersApi* | [**metersGet**](docs/MetersApi.md#metersGet) | **GET** /meters | List meters
|
|
169
|
+
*FlexpriceClient.MetersApi* | [**metersIdDelete**](docs/MetersApi.md#metersIdDelete) | **DELETE** /meters/{id} | Delete meter
|
|
170
|
+
*FlexpriceClient.MetersApi* | [**metersIdDisablePost**](docs/MetersApi.md#metersIdDisablePost) | **POST** /meters/{id}/disable | Disable meter [TODO: Deprecate]
|
|
171
|
+
*FlexpriceClient.MetersApi* | [**metersIdGet**](docs/MetersApi.md#metersIdGet) | **GET** /meters/{id} | Get meter
|
|
172
|
+
*FlexpriceClient.MetersApi* | [**metersIdPut**](docs/MetersApi.md#metersIdPut) | **PUT** /meters/{id} | Update meter
|
|
173
|
+
*FlexpriceClient.MetersApi* | [**metersPost**](docs/MetersApi.md#metersPost) | **POST** /meters | Create meter
|
|
174
|
+
*FlexpriceClient.PaymentsApi* | [**paymentsGet**](docs/PaymentsApi.md#paymentsGet) | **GET** /payments | List payments
|
|
175
|
+
*FlexpriceClient.PaymentsApi* | [**paymentsIdDelete**](docs/PaymentsApi.md#paymentsIdDelete) | **DELETE** /payments/{id} | Delete a payment
|
|
176
|
+
*FlexpriceClient.PaymentsApi* | [**paymentsIdGet**](docs/PaymentsApi.md#paymentsIdGet) | **GET** /payments/{id} | Get a payment by ID
|
|
177
|
+
*FlexpriceClient.PaymentsApi* | [**paymentsIdProcessPost**](docs/PaymentsApi.md#paymentsIdProcessPost) | **POST** /payments/{id}/process | Process a payment
|
|
178
|
+
*FlexpriceClient.PaymentsApi* | [**paymentsIdPut**](docs/PaymentsApi.md#paymentsIdPut) | **PUT** /payments/{id} | Update a payment
|
|
179
|
+
*FlexpriceClient.PaymentsApi* | [**paymentsPost**](docs/PaymentsApi.md#paymentsPost) | **POST** /payments | Create a new payment
|
|
180
|
+
*FlexpriceClient.PlansApi* | [**plansGet**](docs/PlansApi.md#plansGet) | **GET** /plans | Get plans
|
|
181
|
+
*FlexpriceClient.PlansApi* | [**plansIdDelete**](docs/PlansApi.md#plansIdDelete) | **DELETE** /plans/{id} | Delete a plan
|
|
182
|
+
*FlexpriceClient.PlansApi* | [**plansIdGet**](docs/PlansApi.md#plansIdGet) | **GET** /plans/{id} | Get a plan
|
|
183
|
+
*FlexpriceClient.PlansApi* | [**plansIdPut**](docs/PlansApi.md#plansIdPut) | **PUT** /plans/{id} | Update a plan
|
|
184
|
+
*FlexpriceClient.PlansApi* | [**plansPost**](docs/PlansApi.md#plansPost) | **POST** /plans | Create a new plan
|
|
185
|
+
*FlexpriceClient.PricesApi* | [**pricesGet**](docs/PricesApi.md#pricesGet) | **GET** /prices | Get prices
|
|
186
|
+
*FlexpriceClient.PricesApi* | [**pricesIdDelete**](docs/PricesApi.md#pricesIdDelete) | **DELETE** /prices/{id} | Delete a price
|
|
187
|
+
*FlexpriceClient.PricesApi* | [**pricesIdGet**](docs/PricesApi.md#pricesIdGet) | **GET** /prices/{id} | Get a price by ID
|
|
188
|
+
*FlexpriceClient.PricesApi* | [**pricesIdPut**](docs/PricesApi.md#pricesIdPut) | **PUT** /prices/{id} | Update a price
|
|
189
|
+
*FlexpriceClient.PricesApi* | [**pricesPost**](docs/PricesApi.md#pricesPost) | **POST** /prices | Create a new price
|
|
190
|
+
*FlexpriceClient.SecretsApi* | [**secretsApiKeysGet**](docs/SecretsApi.md#secretsApiKeysGet) | **GET** /secrets/api/keys | List API keys
|
|
191
|
+
*FlexpriceClient.SecretsApi* | [**secretsApiKeysIdDelete**](docs/SecretsApi.md#secretsApiKeysIdDelete) | **DELETE** /secrets/api/keys/{id} | Delete an API key
|
|
192
|
+
*FlexpriceClient.SecretsApi* | [**secretsApiKeysPost**](docs/SecretsApi.md#secretsApiKeysPost) | **POST** /secrets/api/keys | Create a new API key
|
|
193
|
+
*FlexpriceClient.SubscriptionsApi* | [**subscriptionsGet**](docs/SubscriptionsApi.md#subscriptionsGet) | **GET** /subscriptions | List subscriptions
|
|
194
|
+
*FlexpriceClient.SubscriptionsApi* | [**subscriptionsIdCancelPost**](docs/SubscriptionsApi.md#subscriptionsIdCancelPost) | **POST** /subscriptions/{id}/cancel | Cancel subscription
|
|
195
|
+
*FlexpriceClient.SubscriptionsApi* | [**subscriptionsIdGet**](docs/SubscriptionsApi.md#subscriptionsIdGet) | **GET** /subscriptions/{id} | Get subscription
|
|
196
|
+
*FlexpriceClient.SubscriptionsApi* | [**subscriptionsIdPausePost**](docs/SubscriptionsApi.md#subscriptionsIdPausePost) | **POST** /subscriptions/{id}/pause | Pause a subscription
|
|
197
|
+
*FlexpriceClient.SubscriptionsApi* | [**subscriptionsIdPausesGet**](docs/SubscriptionsApi.md#subscriptionsIdPausesGet) | **GET** /subscriptions/{id}/pauses | List all pauses for a subscription
|
|
198
|
+
*FlexpriceClient.SubscriptionsApi* | [**subscriptionsIdResumePost**](docs/SubscriptionsApi.md#subscriptionsIdResumePost) | **POST** /subscriptions/{id}/resume | Resume a paused subscription
|
|
199
|
+
*FlexpriceClient.SubscriptionsApi* | [**subscriptionsPost**](docs/SubscriptionsApi.md#subscriptionsPost) | **POST** /subscriptions | Create subscription
|
|
200
|
+
*FlexpriceClient.SubscriptionsApi* | [**subscriptionsUsagePost**](docs/SubscriptionsApi.md#subscriptionsUsagePost) | **POST** /subscriptions/usage | Get usage by subscription
|
|
201
|
+
*FlexpriceClient.TasksApi* | [**tasksGet**](docs/TasksApi.md#tasksGet) | **GET** /tasks | List tasks
|
|
202
|
+
*FlexpriceClient.TasksApi* | [**tasksIdGet**](docs/TasksApi.md#tasksIdGet) | **GET** /tasks/{id} | Get a task by ID
|
|
203
|
+
*FlexpriceClient.TasksApi* | [**tasksIdProcessPost**](docs/TasksApi.md#tasksIdProcessPost) | **POST** /tasks/{id}/process | Process a task
|
|
204
|
+
*FlexpriceClient.TasksApi* | [**tasksIdStatusPut**](docs/TasksApi.md#tasksIdStatusPut) | **PUT** /tasks/{id}/status | Update task status
|
|
205
|
+
*FlexpriceClient.TasksApi* | [**tasksPost**](docs/TasksApi.md#tasksPost) | **POST** /tasks | Create a new task
|
|
206
|
+
*FlexpriceClient.TenantsApi* | [**tenantBillingGet**](docs/TenantsApi.md#tenantBillingGet) | **GET** /tenant/billing | Get billing usage for the current tenant
|
|
207
|
+
*FlexpriceClient.TenantsApi* | [**tenantsIdGet**](docs/TenantsApi.md#tenantsIdGet) | **GET** /tenants/{id} | Get tenant by ID
|
|
208
|
+
*FlexpriceClient.TenantsApi* | [**tenantsPost**](docs/TenantsApi.md#tenantsPost) | **POST** /tenants | Create a new tenant
|
|
209
|
+
*FlexpriceClient.TenantsApi* | [**tenantsUpdatePut**](docs/TenantsApi.md#tenantsUpdatePut) | **PUT** /tenants/update | Update a tenant
|
|
210
|
+
*FlexpriceClient.UsersApi* | [**usersMeGet**](docs/UsersApi.md#usersMeGet) | **GET** /users/me | Get user info
|
|
211
|
+
*FlexpriceClient.WalletsApi* | [**customersIdWalletsGet**](docs/WalletsApi.md#customersIdWalletsGet) | **GET** /customers/{id}/wallets | Get wallets by customer ID
|
|
212
|
+
*FlexpriceClient.WalletsApi* | [**walletsIdBalanceRealTimeGet**](docs/WalletsApi.md#walletsIdBalanceRealTimeGet) | **GET** /wallets/{id}/balance/real-time | Get wallet balance
|
|
213
|
+
*FlexpriceClient.WalletsApi* | [**walletsIdGet**](docs/WalletsApi.md#walletsIdGet) | **GET** /wallets/{id} | Get wallet by ID
|
|
214
|
+
*FlexpriceClient.WalletsApi* | [**walletsIdPut**](docs/WalletsApi.md#walletsIdPut) | **PUT** /wallets/{id} | Update a wallet
|
|
215
|
+
*FlexpriceClient.WalletsApi* | [**walletsIdTerminatePost**](docs/WalletsApi.md#walletsIdTerminatePost) | **POST** /wallets/{id}/terminate | Terminate a wallet
|
|
216
|
+
*FlexpriceClient.WalletsApi* | [**walletsIdTopUpPost**](docs/WalletsApi.md#walletsIdTopUpPost) | **POST** /wallets/{id}/top-up | Top up wallet
|
|
217
|
+
*FlexpriceClient.WalletsApi* | [**walletsIdTransactionsGet**](docs/WalletsApi.md#walletsIdTransactionsGet) | **GET** /wallets/{id}/transactions | Get wallet transactions
|
|
218
|
+
*FlexpriceClient.WalletsApi* | [**walletsPost**](docs/WalletsApi.md#walletsPost) | **POST** /wallets | Create a new wallet
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
## Documentation for Models
|
|
222
|
+
|
|
223
|
+
- [FlexpriceClient.DtoAddress](docs/DtoAddress.md)
|
|
224
|
+
- [FlexpriceClient.DtoAggregatedEntitlement](docs/DtoAggregatedEntitlement.md)
|
|
225
|
+
- [FlexpriceClient.DtoAggregatedFeature](docs/DtoAggregatedFeature.md)
|
|
226
|
+
- [FlexpriceClient.DtoAuthResponse](docs/DtoAuthResponse.md)
|
|
227
|
+
- [FlexpriceClient.DtoBillingPeriodInfo](docs/DtoBillingPeriodInfo.md)
|
|
228
|
+
- [FlexpriceClient.DtoBulkIngestEventRequest](docs/DtoBulkIngestEventRequest.md)
|
|
229
|
+
- [FlexpriceClient.DtoCreateAPIKeyRequest](docs/DtoCreateAPIKeyRequest.md)
|
|
230
|
+
- [FlexpriceClient.DtoCreateAPIKeyResponse](docs/DtoCreateAPIKeyResponse.md)
|
|
231
|
+
- [FlexpriceClient.DtoCreateCustomerRequest](docs/DtoCreateCustomerRequest.md)
|
|
232
|
+
- [FlexpriceClient.DtoCreateEntitlementRequest](docs/DtoCreateEntitlementRequest.md)
|
|
233
|
+
- [FlexpriceClient.DtoCreateEnvironmentRequest](docs/DtoCreateEnvironmentRequest.md)
|
|
234
|
+
- [FlexpriceClient.DtoCreateFeatureRequest](docs/DtoCreateFeatureRequest.md)
|
|
235
|
+
- [FlexpriceClient.DtoCreateIntegrationRequest](docs/DtoCreateIntegrationRequest.md)
|
|
236
|
+
- [FlexpriceClient.DtoCreateInvoiceLineItemRequest](docs/DtoCreateInvoiceLineItemRequest.md)
|
|
237
|
+
- [FlexpriceClient.DtoCreateInvoiceRequest](docs/DtoCreateInvoiceRequest.md)
|
|
238
|
+
- [FlexpriceClient.DtoCreateMeterRequest](docs/DtoCreateMeterRequest.md)
|
|
239
|
+
- [FlexpriceClient.DtoCreatePaymentRequest](docs/DtoCreatePaymentRequest.md)
|
|
240
|
+
- [FlexpriceClient.DtoCreatePlanEntitlementRequest](docs/DtoCreatePlanEntitlementRequest.md)
|
|
241
|
+
- [FlexpriceClient.DtoCreatePlanPriceRequest](docs/DtoCreatePlanPriceRequest.md)
|
|
242
|
+
- [FlexpriceClient.DtoCreatePlanRequest](docs/DtoCreatePlanRequest.md)
|
|
243
|
+
- [FlexpriceClient.DtoCreatePriceRequest](docs/DtoCreatePriceRequest.md)
|
|
244
|
+
- [FlexpriceClient.DtoCreatePriceTier](docs/DtoCreatePriceTier.md)
|
|
245
|
+
- [FlexpriceClient.DtoCreateSubscriptionRequest](docs/DtoCreateSubscriptionRequest.md)
|
|
246
|
+
- [FlexpriceClient.DtoCreateTaskRequest](docs/DtoCreateTaskRequest.md)
|
|
247
|
+
- [FlexpriceClient.DtoCreateTenantRequest](docs/DtoCreateTenantRequest.md)
|
|
248
|
+
- [FlexpriceClient.DtoCreateWalletRequest](docs/DtoCreateWalletRequest.md)
|
|
249
|
+
- [FlexpriceClient.DtoCustomerEntitlementsResponse](docs/DtoCustomerEntitlementsResponse.md)
|
|
250
|
+
- [FlexpriceClient.DtoCustomerInvoiceSummary](docs/DtoCustomerInvoiceSummary.md)
|
|
251
|
+
- [FlexpriceClient.DtoCustomerMultiCurrencyInvoiceSummary](docs/DtoCustomerMultiCurrencyInvoiceSummary.md)
|
|
252
|
+
- [FlexpriceClient.DtoCustomerResponse](docs/DtoCustomerResponse.md)
|
|
253
|
+
- [FlexpriceClient.DtoCustomerUsageSummaryResponse](docs/DtoCustomerUsageSummaryResponse.md)
|
|
254
|
+
- [FlexpriceClient.DtoEntitlementResponse](docs/DtoEntitlementResponse.md)
|
|
255
|
+
- [FlexpriceClient.DtoEntitlementSource](docs/DtoEntitlementSource.md)
|
|
256
|
+
- [FlexpriceClient.DtoEnvironmentResponse](docs/DtoEnvironmentResponse.md)
|
|
257
|
+
- [FlexpriceClient.DtoEvent](docs/DtoEvent.md)
|
|
258
|
+
- [FlexpriceClient.DtoFeatureResponse](docs/DtoFeatureResponse.md)
|
|
259
|
+
- [FlexpriceClient.DtoFeatureUsageSummary](docs/DtoFeatureUsageSummary.md)
|
|
260
|
+
- [FlexpriceClient.DtoGetEventsResponse](docs/DtoGetEventsResponse.md)
|
|
261
|
+
- [FlexpriceClient.DtoGetPreviewInvoiceRequest](docs/DtoGetPreviewInvoiceRequest.md)
|
|
262
|
+
- [FlexpriceClient.DtoGetUsageByMeterRequest](docs/DtoGetUsageByMeterRequest.md)
|
|
263
|
+
- [FlexpriceClient.DtoGetUsageBySubscriptionRequest](docs/DtoGetUsageBySubscriptionRequest.md)
|
|
264
|
+
- [FlexpriceClient.DtoGetUsageBySubscriptionResponse](docs/DtoGetUsageBySubscriptionResponse.md)
|
|
265
|
+
- [FlexpriceClient.DtoGetUsageRequest](docs/DtoGetUsageRequest.md)
|
|
266
|
+
- [FlexpriceClient.DtoGetUsageResponse](docs/DtoGetUsageResponse.md)
|
|
267
|
+
- [FlexpriceClient.DtoIngestEventRequest](docs/DtoIngestEventRequest.md)
|
|
268
|
+
- [FlexpriceClient.DtoInvoiceLineItemResponse](docs/DtoInvoiceLineItemResponse.md)
|
|
269
|
+
- [FlexpriceClient.DtoInvoiceResponse](docs/DtoInvoiceResponse.md)
|
|
270
|
+
- [FlexpriceClient.DtoLinkedIntegrationsResponse](docs/DtoLinkedIntegrationsResponse.md)
|
|
271
|
+
- [FlexpriceClient.DtoListCustomersResponse](docs/DtoListCustomersResponse.md)
|
|
272
|
+
- [FlexpriceClient.DtoListEntitlementsResponse](docs/DtoListEntitlementsResponse.md)
|
|
273
|
+
- [FlexpriceClient.DtoListEnvironmentsResponse](docs/DtoListEnvironmentsResponse.md)
|
|
274
|
+
- [FlexpriceClient.DtoListFeaturesResponse](docs/DtoListFeaturesResponse.md)
|
|
275
|
+
- [FlexpriceClient.DtoListInvoicesResponse](docs/DtoListInvoicesResponse.md)
|
|
276
|
+
- [FlexpriceClient.DtoListPaymentsResponse](docs/DtoListPaymentsResponse.md)
|
|
277
|
+
- [FlexpriceClient.DtoListPlansResponse](docs/DtoListPlansResponse.md)
|
|
278
|
+
- [FlexpriceClient.DtoListPricesResponse](docs/DtoListPricesResponse.md)
|
|
279
|
+
- [FlexpriceClient.DtoListSecretsResponse](docs/DtoListSecretsResponse.md)
|
|
280
|
+
- [FlexpriceClient.DtoListSubscriptionPausesResponse](docs/DtoListSubscriptionPausesResponse.md)
|
|
281
|
+
- [FlexpriceClient.DtoListSubscriptionsResponse](docs/DtoListSubscriptionsResponse.md)
|
|
282
|
+
- [FlexpriceClient.DtoListTasksResponse](docs/DtoListTasksResponse.md)
|
|
283
|
+
- [FlexpriceClient.DtoListWalletTransactionsResponse](docs/DtoListWalletTransactionsResponse.md)
|
|
284
|
+
- [FlexpriceClient.DtoLoginRequest](docs/DtoLoginRequest.md)
|
|
285
|
+
- [FlexpriceClient.DtoMeterResponse](docs/DtoMeterResponse.md)
|
|
286
|
+
- [FlexpriceClient.DtoPauseSubscriptionRequest](docs/DtoPauseSubscriptionRequest.md)
|
|
287
|
+
- [FlexpriceClient.DtoPaymentAttemptResponse](docs/DtoPaymentAttemptResponse.md)
|
|
288
|
+
- [FlexpriceClient.DtoPaymentResponse](docs/DtoPaymentResponse.md)
|
|
289
|
+
- [FlexpriceClient.DtoPlanResponse](docs/DtoPlanResponse.md)
|
|
290
|
+
- [FlexpriceClient.DtoPriceResponse](docs/DtoPriceResponse.md)
|
|
291
|
+
- [FlexpriceClient.DtoResumeSubscriptionRequest](docs/DtoResumeSubscriptionRequest.md)
|
|
292
|
+
- [FlexpriceClient.DtoSecretResponse](docs/DtoSecretResponse.md)
|
|
293
|
+
- [FlexpriceClient.DtoSignUpRequest](docs/DtoSignUpRequest.md)
|
|
294
|
+
- [FlexpriceClient.DtoSubscriptionPauseResponse](docs/DtoSubscriptionPauseResponse.md)
|
|
295
|
+
- [FlexpriceClient.DtoSubscriptionResponse](docs/DtoSubscriptionResponse.md)
|
|
296
|
+
- [FlexpriceClient.DtoSubscriptionUsageByMetersResponse](docs/DtoSubscriptionUsageByMetersResponse.md)
|
|
297
|
+
- [FlexpriceClient.DtoTaskResponse](docs/DtoTaskResponse.md)
|
|
298
|
+
- [FlexpriceClient.DtoTenantBillingDetails](docs/DtoTenantBillingDetails.md)
|
|
299
|
+
- [FlexpriceClient.DtoTenantBillingUsage](docs/DtoTenantBillingUsage.md)
|
|
300
|
+
- [FlexpriceClient.DtoTenantResponse](docs/DtoTenantResponse.md)
|
|
301
|
+
- [FlexpriceClient.DtoTopUpWalletRequest](docs/DtoTopUpWalletRequest.md)
|
|
302
|
+
- [FlexpriceClient.DtoUpdateCustomerRequest](docs/DtoUpdateCustomerRequest.md)
|
|
303
|
+
- [FlexpriceClient.DtoUpdateEntitlementRequest](docs/DtoUpdateEntitlementRequest.md)
|
|
304
|
+
- [FlexpriceClient.DtoUpdateEnvironmentRequest](docs/DtoUpdateEnvironmentRequest.md)
|
|
305
|
+
- [FlexpriceClient.DtoUpdateFeatureRequest](docs/DtoUpdateFeatureRequest.md)
|
|
306
|
+
- [FlexpriceClient.DtoUpdateMeterRequest](docs/DtoUpdateMeterRequest.md)
|
|
307
|
+
- [FlexpriceClient.DtoUpdatePaymentRequest](docs/DtoUpdatePaymentRequest.md)
|
|
308
|
+
- [FlexpriceClient.DtoUpdatePaymentStatusRequest](docs/DtoUpdatePaymentStatusRequest.md)
|
|
309
|
+
- [FlexpriceClient.DtoUpdatePlanEntitlementRequest](docs/DtoUpdatePlanEntitlementRequest.md)
|
|
310
|
+
- [FlexpriceClient.DtoUpdatePlanPriceRequest](docs/DtoUpdatePlanPriceRequest.md)
|
|
311
|
+
- [FlexpriceClient.DtoUpdatePlanRequest](docs/DtoUpdatePlanRequest.md)
|
|
312
|
+
- [FlexpriceClient.DtoUpdatePriceRequest](docs/DtoUpdatePriceRequest.md)
|
|
313
|
+
- [FlexpriceClient.DtoUpdateTaskStatusRequest](docs/DtoUpdateTaskStatusRequest.md)
|
|
314
|
+
- [FlexpriceClient.DtoUpdateTenantRequest](docs/DtoUpdateTenantRequest.md)
|
|
315
|
+
- [FlexpriceClient.DtoUpdateWalletRequest](docs/DtoUpdateWalletRequest.md)
|
|
316
|
+
- [FlexpriceClient.DtoUsageResult](docs/DtoUsageResult.md)
|
|
317
|
+
- [FlexpriceClient.DtoUserResponse](docs/DtoUserResponse.md)
|
|
318
|
+
- [FlexpriceClient.DtoWalletBalanceResponse](docs/DtoWalletBalanceResponse.md)
|
|
319
|
+
- [FlexpriceClient.DtoWalletResponse](docs/DtoWalletResponse.md)
|
|
320
|
+
- [FlexpriceClient.DtoWalletTransactionResponse](docs/DtoWalletTransactionResponse.md)
|
|
321
|
+
- [FlexpriceClient.ErrorsErrorDetail](docs/ErrorsErrorDetail.md)
|
|
322
|
+
- [FlexpriceClient.ErrorsErrorResponse](docs/ErrorsErrorResponse.md)
|
|
323
|
+
- [FlexpriceClient.MeterAggregation](docs/MeterAggregation.md)
|
|
324
|
+
- [FlexpriceClient.MeterFilter](docs/MeterFilter.md)
|
|
325
|
+
- [FlexpriceClient.PriceJSONBTransformQuantity](docs/PriceJSONBTransformQuantity.md)
|
|
326
|
+
- [FlexpriceClient.PricePrice](docs/PricePrice.md)
|
|
327
|
+
- [FlexpriceClient.PricePriceTier](docs/PricePriceTier.md)
|
|
328
|
+
- [FlexpriceClient.PriceTransformQuantity](docs/PriceTransformQuantity.md)
|
|
329
|
+
- [FlexpriceClient.SubscriptionSubscriptionLineItem](docs/SubscriptionSubscriptionLineItem.md)
|
|
330
|
+
- [FlexpriceClient.SubscriptionSubscriptionPause](docs/SubscriptionSubscriptionPause.md)
|
|
331
|
+
- [FlexpriceClient.TypesAggregationType](docs/TypesAggregationType.md)
|
|
332
|
+
- [FlexpriceClient.TypesAutoTopupTrigger](docs/TypesAutoTopupTrigger.md)
|
|
333
|
+
- [FlexpriceClient.TypesBillingCadence](docs/TypesBillingCadence.md)
|
|
334
|
+
- [FlexpriceClient.TypesBillingModel](docs/TypesBillingModel.md)
|
|
335
|
+
- [FlexpriceClient.TypesBillingPeriod](docs/TypesBillingPeriod.md)
|
|
336
|
+
- [FlexpriceClient.TypesBillingTier](docs/TypesBillingTier.md)
|
|
337
|
+
- [FlexpriceClient.TypesEntityType](docs/TypesEntityType.md)
|
|
338
|
+
- [FlexpriceClient.TypesFeatureType](docs/TypesFeatureType.md)
|
|
339
|
+
- [FlexpriceClient.TypesFileType](docs/TypesFileType.md)
|
|
340
|
+
- [FlexpriceClient.TypesInvoiceBillingReason](docs/TypesInvoiceBillingReason.md)
|
|
341
|
+
- [FlexpriceClient.TypesInvoiceCadence](docs/TypesInvoiceCadence.md)
|
|
342
|
+
- [FlexpriceClient.TypesInvoiceStatus](docs/TypesInvoiceStatus.md)
|
|
343
|
+
- [FlexpriceClient.TypesInvoiceType](docs/TypesInvoiceType.md)
|
|
344
|
+
- [FlexpriceClient.TypesPaginationResponse](docs/TypesPaginationResponse.md)
|
|
345
|
+
- [FlexpriceClient.TypesPauseMode](docs/TypesPauseMode.md)
|
|
346
|
+
- [FlexpriceClient.TypesPauseStatus](docs/TypesPauseStatus.md)
|
|
347
|
+
- [FlexpriceClient.TypesPaymentDestinationType](docs/TypesPaymentDestinationType.md)
|
|
348
|
+
- [FlexpriceClient.TypesPaymentMethodType](docs/TypesPaymentMethodType.md)
|
|
349
|
+
- [FlexpriceClient.TypesPaymentStatus](docs/TypesPaymentStatus.md)
|
|
350
|
+
- [FlexpriceClient.TypesPriceType](docs/TypesPriceType.md)
|
|
351
|
+
- [FlexpriceClient.TypesResetUsage](docs/TypesResetUsage.md)
|
|
352
|
+
- [FlexpriceClient.TypesResumeMode](docs/TypesResumeMode.md)
|
|
353
|
+
- [FlexpriceClient.TypesSecretProvider](docs/TypesSecretProvider.md)
|
|
354
|
+
- [FlexpriceClient.TypesSecretType](docs/TypesSecretType.md)
|
|
355
|
+
- [FlexpriceClient.TypesStatus](docs/TypesStatus.md)
|
|
356
|
+
- [FlexpriceClient.TypesSubscriptionStatus](docs/TypesSubscriptionStatus.md)
|
|
357
|
+
- [FlexpriceClient.TypesTaskStatus](docs/TypesTaskStatus.md)
|
|
358
|
+
- [FlexpriceClient.TypesTaskType](docs/TypesTaskType.md)
|
|
359
|
+
- [FlexpriceClient.TypesTransactionReason](docs/TypesTransactionReason.md)
|
|
360
|
+
- [FlexpriceClient.TypesTransactionStatus](docs/TypesTransactionStatus.md)
|
|
361
|
+
- [FlexpriceClient.TypesTransactionType](docs/TypesTransactionType.md)
|
|
362
|
+
- [FlexpriceClient.TypesWalletConfig](docs/TypesWalletConfig.md)
|
|
363
|
+
- [FlexpriceClient.TypesWalletConfigPriceType](docs/TypesWalletConfigPriceType.md)
|
|
364
|
+
- [FlexpriceClient.TypesWalletStatus](docs/TypesWalletStatus.md)
|
|
365
|
+
- [FlexpriceClient.TypesWalletTxReferenceType](docs/TypesWalletTxReferenceType.md)
|
|
366
|
+
- [FlexpriceClient.TypesWalletType](docs/TypesWalletType.md)
|
|
367
|
+
- [FlexpriceClient.TypesWindowSize](docs/TypesWindowSize.md)
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
## Documentation for Authorization
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
Authentication schemes defined for the API:
|
|
374
|
+
### ApiKeyAuth
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
- **Type**: API key
|
|
378
|
+
- **API key parameter name**: x-api-key
|
|
379
|
+
- **Location**: HTTP header
|
|
380
|
+
|