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

com.stripe.service.ApplicationFeeRefundService 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.FeeRefund;
import com.stripe.model.StripeCollection;
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.ApplicationFeeRefundCreateParams;
import com.stripe.param.ApplicationFeeRefundListParams;
import com.stripe.param.ApplicationFeeRefundRetrieveParams;
import com.stripe.param.ApplicationFeeRefundUpdateParams;

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

  /**
   * By default, you can see the 10 most recent refunds stored directly on the application fee
   * object, but you can also retrieve details about a specific refund stored on the application
   * fee.
   */
  public FeeRefund retrieve(String fee, String id, ApplicationFeeRefundRetrieveParams params)
      throws StripeException {
    return retrieve(fee, id, params, (RequestOptions) null);
  }
  /**
   * By default, you can see the 10 most recent refunds stored directly on the application fee
   * object, but you can also retrieve details about a specific refund stored on the application
   * fee.
   */
  public FeeRefund retrieve(String fee, String id, RequestOptions options) throws StripeException {
    return retrieve(fee, id, (ApplicationFeeRefundRetrieveParams) null, options);
  }
  /**
   * By default, you can see the 10 most recent refunds stored directly on the application fee
   * object, but you can also retrieve details about a specific refund stored on the application
   * fee.
   */
  public FeeRefund retrieve(String fee, String id) throws StripeException {
    return retrieve(fee, id, (ApplicationFeeRefundRetrieveParams) null, (RequestOptions) null);
  }
  /**
   * By default, you can see the 10 most recent refunds stored directly on the application fee
   * object, but you can also retrieve details about a specific refund stored on the application
   * fee.
   */
  public FeeRefund retrieve(
      String fee, String id, ApplicationFeeRefundRetrieveParams params, RequestOptions options)
      throws StripeException {
    String path =
        String.format(
            "/v1/application_fees/%s/refunds/%s",
            ApiResource.urlEncodeId(fee), ApiResource.urlEncodeId(id));
    ApiRequest request =
        new ApiRequest(
            BaseAddress.API,
            ApiResource.RequestMethod.GET,
            path,
            ApiRequestParams.paramsToMap(params),
            options);
    return this.request(request, FeeRefund.class);
  }
  /**
   * Updates the specified application fee refund by setting the values of the parameters passed.
   * Any parameters not provided will be left unchanged.
   *
   * 

This request only accepts metadata as an argument. */ public FeeRefund update(String fee, String id, ApplicationFeeRefundUpdateParams params) throws StripeException { return update(fee, id, params, (RequestOptions) null); } /** * Updates the specified application fee refund by setting the values of the parameters passed. * Any parameters not provided will be left unchanged. * *

This request only accepts metadata as an argument. */ public FeeRefund update(String fee, String id, RequestOptions options) throws StripeException { return update(fee, id, (ApplicationFeeRefundUpdateParams) null, options); } /** * Updates the specified application fee refund by setting the values of the parameters passed. * Any parameters not provided will be left unchanged. * *

This request only accepts metadata as an argument. */ public FeeRefund update(String fee, String id) throws StripeException { return update(fee, id, (ApplicationFeeRefundUpdateParams) null, (RequestOptions) null); } /** * Updates the specified application fee refund by setting the values of the parameters passed. * Any parameters not provided will be left unchanged. * *

This request only accepts metadata as an argument. */ public FeeRefund update( String fee, String id, ApplicationFeeRefundUpdateParams params, RequestOptions options) throws StripeException { String path = String.format( "/v1/application_fees/%s/refunds/%s", ApiResource.urlEncodeId(fee), ApiResource.urlEncodeId(id)); ApiRequest request = new ApiRequest( BaseAddress.API, ApiResource.RequestMethod.POST, path, ApiRequestParams.paramsToMap(params), options); return this.request(request, FeeRefund.class); } /** * You can see a list of the refunds belonging to a specific application fee. Note that the 10 * most recent refunds are always available by default on the application fee object. If you need * more than those 10, you can use this API method and the {@code limit} and {@code * starting_after} parameters to page through additional refunds. */ public StripeCollection list(String id, ApplicationFeeRefundListParams params) throws StripeException { return list(id, params, (RequestOptions) null); } /** * You can see a list of the refunds belonging to a specific application fee. Note that the 10 * most recent refunds are always available by default on the application fee object. If you need * more than those 10, you can use this API method and the {@code limit} and {@code * starting_after} parameters to page through additional refunds. */ public StripeCollection list(String id, RequestOptions options) throws StripeException { return list(id, (ApplicationFeeRefundListParams) null, options); } /** * You can see a list of the refunds belonging to a specific application fee. Note that the 10 * most recent refunds are always available by default on the application fee object. If you need * more than those 10, you can use this API method and the {@code limit} and {@code * starting_after} parameters to page through additional refunds. */ public StripeCollection list(String id) throws StripeException { return list(id, (ApplicationFeeRefundListParams) null, (RequestOptions) null); } /** * You can see a list of the refunds belonging to a specific application fee. Note that the 10 * most recent refunds are always available by default on the application fee object. If you need * more than those 10, you can use this API method and the {@code limit} and {@code * starting_after} parameters to page through additional refunds. */ public StripeCollection list( String id, ApplicationFeeRefundListParams params, RequestOptions options) throws StripeException { String path = String.format("/v1/application_fees/%s/refunds", ApiResource.urlEncodeId(id)); ApiRequest request = new ApiRequest( BaseAddress.API, ApiResource.RequestMethod.GET, path, ApiRequestParams.paramsToMap(params), options); return this.request(request, new TypeToken>() {}.getType()); } /** * Refunds an application fee that has previously been collected but not yet refunded. Funds will * be refunded to the Stripe account from which the fee was originally collected. * *

You can optionally refund only part of an application fee. You can do so multiple times, * until the entire fee has been refunded. * *

Once entirely refunded, an application fee can’t be refunded again. This method will raise * an error when called on an already-refunded application fee, or when trying to refund more * money than is left on an application fee. */ public FeeRefund create(String id, ApplicationFeeRefundCreateParams params) throws StripeException { return create(id, params, (RequestOptions) null); } /** * Refunds an application fee that has previously been collected but not yet refunded. Funds will * be refunded to the Stripe account from which the fee was originally collected. * *

You can optionally refund only part of an application fee. You can do so multiple times, * until the entire fee has been refunded. * *

Once entirely refunded, an application fee can’t be refunded again. This method will raise * an error when called on an already-refunded application fee, or when trying to refund more * money than is left on an application fee. */ public FeeRefund create(String id, RequestOptions options) throws StripeException { return create(id, (ApplicationFeeRefundCreateParams) null, options); } /** * Refunds an application fee that has previously been collected but not yet refunded. Funds will * be refunded to the Stripe account from which the fee was originally collected. * *

You can optionally refund only part of an application fee. You can do so multiple times, * until the entire fee has been refunded. * *

Once entirely refunded, an application fee can’t be refunded again. This method will raise * an error when called on an already-refunded application fee, or when trying to refund more * money than is left on an application fee. */ public FeeRefund create(String id) throws StripeException { return create(id, (ApplicationFeeRefundCreateParams) null, (RequestOptions) null); } /** * Refunds an application fee that has previously been collected but not yet refunded. Funds will * be refunded to the Stripe account from which the fee was originally collected. * *

You can optionally refund only part of an application fee. You can do so multiple times, * until the entire fee has been refunded. * *

Once entirely refunded, an application fee can’t be refunded again. This method will raise * an error when called on an already-refunded application fee, or when trying to refund more * money than is left on an application fee. */ public FeeRefund create( String id, ApplicationFeeRefundCreateParams params, RequestOptions options) throws StripeException { String path = String.format("/v1/application_fees/%s/refunds", ApiResource.urlEncodeId(id)); ApiRequest request = new ApiRequest( BaseAddress.API, ApiResource.RequestMethod.POST, path, ApiRequestParams.paramsToMap(params), options); return this.request(request, FeeRefund.class); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy