Package com.stripe.service
Class BalanceTransactionService
java.lang.Object
com.stripe.net.ApiService
com.stripe.service.BalanceTransactionService
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionlist()
Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth).list
(RequestOptions options) Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth).list
(BalanceTransactionListParams params) Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth).list
(BalanceTransactionListParams params, RequestOptions options) Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth).Retrieves the balance transaction with the given ID.retrieve
(String id, RequestOptions options) Retrieves the balance transaction with the given ID.retrieve
(String id, BalanceTransactionRetrieveParams params) Retrieves the balance transaction with the given ID.retrieve
(String id, BalanceTransactionRetrieveParams params, RequestOptions options) Retrieves the balance transaction with the given ID.Methods inherited from class com.stripe.net.ApiService
getResponseGetter, request, requestStream
-
Constructor Details
-
BalanceTransactionService
-
-
Method Details
-
list
public StripeCollection<BalanceTransaction> list(BalanceTransactionListParams params) throws StripeException 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
.- Throws:
StripeException
-
list
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
.- Throws:
StripeException
-
list
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
.- Throws:
StripeException
-
list
public StripeCollection<BalanceTransaction> list(BalanceTransactionListParams params, RequestOptions options) throws StripeException 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
.- Throws:
StripeException
-
retrieve
public BalanceTransaction retrieve(String id, BalanceTransactionRetrieveParams params) throws StripeException Retrieves the balance transaction with the given ID.Note that this endpoint previously used the path
/v1/balance/history/:id
.- Throws:
StripeException
-
retrieve
Retrieves the balance transaction with the given ID.Note that this endpoint previously used the path
/v1/balance/history/:id
.- Throws:
StripeException
-
retrieve
Retrieves the balance transaction with the given ID.Note that this endpoint previously used the path
/v1/balance/history/:id
.- Throws:
StripeException
-
retrieve
public BalanceTransaction retrieve(String id, BalanceTransactionRetrieveParams params, RequestOptions options) throws StripeException Retrieves the balance transaction with the given ID.Note that this endpoint previously used the path
/v1/balance/history/:id
.- Throws:
StripeException
-