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.TaxRateService Maven / Gradle / Ivy
// File generated from our OpenAPI spec
package com.stripe.service;
import com.google.gson.reflect.TypeToken;
import com.stripe.exception.StripeException;
import com.stripe.model.StripeCollection;
import com.stripe.model.TaxRate;
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.TaxRateCreateParams;
import com.stripe.param.TaxRateListParams;
import com.stripe.param.TaxRateRetrieveParams;
import com.stripe.param.TaxRateUpdateParams;
public final class TaxRateService extends ApiService {
public TaxRateService(StripeResponseGetter responseGetter) {
super(responseGetter);
}
/**
* Returns a list of your tax rates. Tax rates are returned sorted by creation date, with the most
* recently created tax rates appearing first.
*/
public StripeCollection list(TaxRateListParams params) throws StripeException {
return list(params, (RequestOptions) null);
}
/**
* Returns a list of your tax rates. Tax rates are returned sorted by creation date, with the most
* recently created tax rates appearing first.
*/
public StripeCollection list(RequestOptions options) throws StripeException {
return list((TaxRateListParams) null, options);
}
/**
* Returns a list of your tax rates. Tax rates are returned sorted by creation date, with the most
* recently created tax rates appearing first.
*/
public StripeCollection list() throws StripeException {
return list((TaxRateListParams) null, (RequestOptions) null);
}
/**
* Returns a list of your tax rates. Tax rates are returned sorted by creation date, with the most
* recently created tax rates appearing first.
*/
public StripeCollection list(TaxRateListParams params, RequestOptions options)
throws StripeException {
String path = "/v1/tax_rates";
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, new TypeToken>() {}.getType());
}
/** Creates a new tax rate. */
public TaxRate create(TaxRateCreateParams params) throws StripeException {
return create(params, (RequestOptions) null);
}
/** Creates a new tax rate. */
public TaxRate create(TaxRateCreateParams params, RequestOptions options) throws StripeException {
String path = "/v1/tax_rates";
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.POST,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, TaxRate.class);
}
/** Retrieves a tax rate with the given ID. */
public TaxRate retrieve(String taxRate, TaxRateRetrieveParams params) throws StripeException {
return retrieve(taxRate, params, (RequestOptions) null);
}
/** Retrieves a tax rate with the given ID. */
public TaxRate retrieve(String taxRate, RequestOptions options) throws StripeException {
return retrieve(taxRate, (TaxRateRetrieveParams) null, options);
}
/** Retrieves a tax rate with the given ID. */
public TaxRate retrieve(String taxRate) throws StripeException {
return retrieve(taxRate, (TaxRateRetrieveParams) null, (RequestOptions) null);
}
/** Retrieves a tax rate with the given ID. */
public TaxRate retrieve(String taxRate, TaxRateRetrieveParams params, RequestOptions options)
throws StripeException {
String path = String.format("/v1/tax_rates/%s", ApiResource.urlEncodeId(taxRate));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, TaxRate.class);
}
/** Updates an existing tax rate. */
public TaxRate update(String taxRate, TaxRateUpdateParams params) throws StripeException {
return update(taxRate, params, (RequestOptions) null);
}
/** Updates an existing tax rate. */
public TaxRate update(String taxRate, RequestOptions options) throws StripeException {
return update(taxRate, (TaxRateUpdateParams) null, options);
}
/** Updates an existing tax rate. */
public TaxRate update(String taxRate) throws StripeException {
return update(taxRate, (TaxRateUpdateParams) null, (RequestOptions) null);
}
/** Updates an existing tax rate. */
public TaxRate update(String taxRate, TaxRateUpdateParams params, RequestOptions options)
throws StripeException {
String path = String.format("/v1/tax_rates/%s", ApiResource.urlEncodeId(taxRate));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.POST,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, TaxRate.class);
}
}