All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.stripe.service.TaxCodeService Maven / Gradle / Ivy

There is a newer version: 28.1.0-beta.3
Show newest version
// 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.TaxCode;
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.TaxCodeListParams;
import com.stripe.param.TaxCodeRetrieveParams;

public final class TaxCodeService extends ApiService {
  public TaxCodeService(StripeResponseGetter responseGetter) {
    super(responseGetter);
  }

  /**
   * A list of all tax codes available to
   * add to Products in order to allow specific tax calculations.
   */
  public StripeCollection list(TaxCodeListParams params) throws StripeException {
    return list(params, (RequestOptions) null);
  }
  /**
   * A list of all tax codes available to
   * add to Products in order to allow specific tax calculations.
   */
  public StripeCollection list(RequestOptions options) throws StripeException {
    return list((TaxCodeListParams) null, options);
  }
  /**
   * A list of all tax codes available to
   * add to Products in order to allow specific tax calculations.
   */
  public StripeCollection list() throws StripeException {
    return list((TaxCodeListParams) null, (RequestOptions) null);
  }
  /**
   * A list of all tax codes available to
   * add to Products in order to allow specific tax calculations.
   */
  public StripeCollection list(TaxCodeListParams params, RequestOptions options)
      throws StripeException {
    String path = "/v1/tax_codes";
    ApiRequest request =
        new ApiRequest(
            BaseAddress.API,
            ApiResource.RequestMethod.GET,
            path,
            ApiRequestParams.paramsToMap(params),
            options,
            ApiMode.V1);
    return this.request(request, new TypeToken>() {}.getType());
  }
  /**
   * Retrieves the details of an existing tax code. Supply the unique tax code ID and Stripe will
   * return the corresponding tax code information.
   */
  public TaxCode retrieve(String id, TaxCodeRetrieveParams params) throws StripeException {
    return retrieve(id, params, (RequestOptions) null);
  }
  /**
   * Retrieves the details of an existing tax code. Supply the unique tax code ID and Stripe will
   * return the corresponding tax code information.
   */
  public TaxCode retrieve(String id, RequestOptions options) throws StripeException {
    return retrieve(id, (TaxCodeRetrieveParams) null, options);
  }
  /**
   * Retrieves the details of an existing tax code. Supply the unique tax code ID and Stripe will
   * return the corresponding tax code information.
   */
  public TaxCode retrieve(String id) throws StripeException {
    return retrieve(id, (TaxCodeRetrieveParams) null, (RequestOptions) null);
  }
  /**
   * Retrieves the details of an existing tax code. Supply the unique tax code ID and Stripe will
   * return the corresponding tax code information.
   */
  public TaxCode retrieve(String id, TaxCodeRetrieveParams params, RequestOptions options)
      throws StripeException {
    String path = String.format("/v1/tax_codes/%s", ApiResource.urlEncodeId(id));
    ApiRequest request =
        new ApiRequest(
            BaseAddress.API,
            ApiResource.RequestMethod.GET,
            path,
            ApiRequestParams.paramsToMap(params),
            options,
            ApiMode.V1);
    return this.request(request, TaxCode.class);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy