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.CustomerTaxIdService 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.TaxId;
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.CustomerTaxIdCreateParams;
import com.stripe.param.CustomerTaxIdListParams;
import com.stripe.param.CustomerTaxIdRetrieveParams;
public final class CustomerTaxIdService extends ApiService {
public CustomerTaxIdService(StripeResponseGetter responseGetter) {
super(responseGetter);
}
/** Deletes an existing {@code tax_id} object. */
public TaxId delete(String customer, String id) throws StripeException {
return delete(customer, id, (RequestOptions) null);
}
/** Deletes an existing {@code tax_id} object. */
public TaxId delete(String customer, String id, RequestOptions options) throws StripeException {
String path =
String.format(
"/v1/customers/%s/tax_ids/%s",
ApiResource.urlEncodeId(customer), ApiResource.urlEncodeId(id));
ApiRequest request =
new ApiRequest(BaseAddress.API, ApiResource.RequestMethod.DELETE, path, null, options);
return this.request(request, TaxId.class);
}
/** Retrieves the {@code tax_id} object with the given identifier. */
public TaxId retrieve(String customer, String id, CustomerTaxIdRetrieveParams params)
throws StripeException {
return retrieve(customer, id, params, (RequestOptions) null);
}
/** Retrieves the {@code tax_id} object with the given identifier. */
public TaxId retrieve(String customer, String id, RequestOptions options) throws StripeException {
return retrieve(customer, id, (CustomerTaxIdRetrieveParams) null, options);
}
/** Retrieves the {@code tax_id} object with the given identifier. */
public TaxId retrieve(String customer, String id) throws StripeException {
return retrieve(customer, id, (CustomerTaxIdRetrieveParams) null, (RequestOptions) null);
}
/** Retrieves the {@code tax_id} object with the given identifier. */
public TaxId retrieve(
String customer, String id, CustomerTaxIdRetrieveParams params, RequestOptions options)
throws StripeException {
String path =
String.format(
"/v1/customers/%s/tax_ids/%s",
ApiResource.urlEncodeId(customer), ApiResource.urlEncodeId(id));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, TaxId.class);
}
/** Returns a list of tax IDs for a customer. */
public StripeCollection list(String customer, CustomerTaxIdListParams params)
throws StripeException {
return list(customer, params, (RequestOptions) null);
}
/** Returns a list of tax IDs for a customer. */
public StripeCollection list(String customer, RequestOptions options)
throws StripeException {
return list(customer, (CustomerTaxIdListParams) null, options);
}
/** Returns a list of tax IDs for a customer. */
public StripeCollection list(String customer) throws StripeException {
return list(customer, (CustomerTaxIdListParams) null, (RequestOptions) null);
}
/** Returns a list of tax IDs for a customer. */
public StripeCollection list(
String customer, CustomerTaxIdListParams params, RequestOptions options)
throws StripeException {
String path = String.format("/v1/customers/%s/tax_ids", ApiResource.urlEncodeId(customer));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, new TypeToken>() {}.getType());
}
/** Creates a new {@code tax_id} object for a customer. */
public TaxId create(String customer, CustomerTaxIdCreateParams params) throws StripeException {
return create(customer, params, (RequestOptions) null);
}
/** Creates a new {@code tax_id} object for a customer. */
public TaxId create(String customer, CustomerTaxIdCreateParams params, RequestOptions options)
throws StripeException {
String path = String.format("/v1/customers/%s/tax_ids", ApiResource.urlEncodeId(customer));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.POST,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, TaxId.class);
}
}