Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
// File generated from our OpenAPI spec
import { StripeResource } from '../StripeResource.js';
export class BalanceTransactionResource extends StripeResource {
/**
* Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth). The transactions are returned in sorted order, with the most recent transactions appearing first.
*
* Note that this endpoint was previously called “Balance history” and used the path /v1/balance/history.
*/
list(params, options) {
return this._makeRequest('GET', '/v1/balance_transactions', params, options, {
methodType: 'list',
});
}
/**
* Retrieves the balance transaction with the given ID.
*
* Note that this endpoint previously used the path /v1/balance/history/:id.
*/
retrieve(id, params, options) {
return this._makeRequest('GET', `/v1/balance_transactions/${encodeURIComponent(id)}`, params, options);
}
}
//# sourceMappingURL=BalanceTransactions.js.map