All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.stripe.service.treasury.DebitReversalService Maven / Gradle / Ivy
// File generated from our OpenAPI spec
package com.stripe.service.treasury;
import com.google.gson.reflect.TypeToken;
import com.stripe.exception.StripeException;
import com.stripe.model.StripeCollection;
import com.stripe.model.treasury.DebitReversal;
import com.stripe.net.ApiMode;
import com.stripe.net.ApiRequest;
import com.stripe.net.ApiRequestParams;
import com.stripe.net.ApiResource;
import com.stripe.net.ApiService;
import com.stripe.net.BaseAddress;
import com.stripe.net.RequestOptions;
import com.stripe.net.StripeResponseGetter;
import com.stripe.param.treasury.DebitReversalCreateParams;
import com.stripe.param.treasury.DebitReversalListParams;
import com.stripe.param.treasury.DebitReversalRetrieveParams;
public final class DebitReversalService extends ApiService {
public DebitReversalService(StripeResponseGetter responseGetter) {
super(responseGetter);
}
/** Returns a list of DebitReversals. */
public StripeCollection list(DebitReversalListParams params)
throws StripeException {
return list(params, (RequestOptions) null);
}
/** Returns a list of DebitReversals. */
public StripeCollection list(
DebitReversalListParams params, RequestOptions options) throws StripeException {
String path = "/v1/treasury/debit_reversals";
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options,
ApiMode.V1);
return this.request(request, new TypeToken>() {}.getType());
}
/** Reverses a ReceivedDebit and creates a DebitReversal object. */
public DebitReversal create(DebitReversalCreateParams params) throws StripeException {
return create(params, (RequestOptions) null);
}
/** Reverses a ReceivedDebit and creates a DebitReversal object. */
public DebitReversal create(DebitReversalCreateParams params, RequestOptions options)
throws StripeException {
String path = "/v1/treasury/debit_reversals";
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.POST,
path,
ApiRequestParams.paramsToMap(params),
options,
ApiMode.V1);
return this.request(request, DebitReversal.class);
}
/** Retrieves a DebitReversal object. */
public DebitReversal retrieve(String debitReversal, DebitReversalRetrieveParams params)
throws StripeException {
return retrieve(debitReversal, params, (RequestOptions) null);
}
/** Retrieves a DebitReversal object. */
public DebitReversal retrieve(String debitReversal, RequestOptions options)
throws StripeException {
return retrieve(debitReversal, (DebitReversalRetrieveParams) null, options);
}
/** Retrieves a DebitReversal object. */
public DebitReversal retrieve(String debitReversal) throws StripeException {
return retrieve(debitReversal, (DebitReversalRetrieveParams) null, (RequestOptions) null);
}
/** Retrieves a DebitReversal object. */
public DebitReversal retrieve(
String debitReversal, DebitReversalRetrieveParams params, RequestOptions options)
throws StripeException {
String path =
String.format("/v1/treasury/debit_reversals/%s", ApiResource.urlEncodeId(debitReversal));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options,
ApiMode.V1);
return this.request(request, DebitReversal.class);
}
}