Class OutboundPaymentService
java.lang.Object
com.stripe.net.ApiService
com.stripe.service.v2.moneymanagement.OutboundPaymentService
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCancels an OutboundPayment.cancel
(String id, RequestOptions options) Cancels an OutboundPayment.create
(OutboundPaymentCreateParams params) Creates an OutboundPayment.create
(OutboundPaymentCreateParams params, RequestOptions options) Creates an OutboundPayment.list()
Returns a list of OutboundPayments that match the provided filters.list
(RequestOptions options) Returns a list of OutboundPayments that match the provided filters.list
(OutboundPaymentListParams params) Returns a list of OutboundPayments that match the provided filters.list
(OutboundPaymentListParams params, RequestOptions options) Returns a list of OutboundPayments that match the provided filters.Retrieves the details of an existing OutboundPayment by passing the unique OutboundPayment ID from either the OutboundPayment create or list response.retrieve
(String id, RequestOptions options) Retrieves the details of an existing OutboundPayment by passing the unique OutboundPayment ID from either the OutboundPayment create or list response.Methods inherited from class com.stripe.net.ApiService
getResponseGetter, request, requestStream
-
Constructor Details
-
OutboundPaymentService
-
-
Method Details
-
list
public StripeCollection<OutboundPayment> list(OutboundPaymentListParams params) throws StripeException Returns a list of OutboundPayments that match the provided filters.- Throws:
StripeException
-
list
Returns a list of OutboundPayments that match the provided filters.- Throws:
StripeException
-
list
Returns a list of OutboundPayments that match the provided filters.- Throws:
StripeException
-
list
public StripeCollection<OutboundPayment> list(OutboundPaymentListParams params, RequestOptions options) throws StripeException Returns a list of OutboundPayments that match the provided filters.- Throws:
StripeException
-
create
public OutboundPayment create(OutboundPaymentCreateParams params) throws StripeException, InsufficientFundsException, QuotaExceededException, RecipientNotNotifiableException, FeatureNotEnabledException Creates an OutboundPayment. -
create
public OutboundPayment create(OutboundPaymentCreateParams params, RequestOptions options) throws StripeException, InsufficientFundsException, QuotaExceededException, RecipientNotNotifiableException, FeatureNotEnabledException Creates an OutboundPayment. -
retrieve
Retrieves the details of an existing OutboundPayment by passing the unique OutboundPayment ID from either the OutboundPayment create or list response.- Throws:
StripeException
-
retrieve
Retrieves the details of an existing OutboundPayment by passing the unique OutboundPayment ID from either the OutboundPayment create or list response.- Throws:
StripeException
-
cancel
public OutboundPayment cancel(String id) throws StripeException, AlreadyCanceledException, NotCancelableException Cancels an OutboundPayment. Only processing OutboundPayments can be canceled. -
cancel
public OutboundPayment cancel(String id, RequestOptions options) throws StripeException, AlreadyCanceledException, NotCancelableException Cancels an OutboundPayment. Only processing OutboundPayments can be canceled.
-