com.stripe.model.RefundCollection Maven / Gradle / Ivy
package com.stripe.model;
import com.stripe.Stripe;
import com.stripe.exception.StripeException;
import com.stripe.net.ApiResource;
import com.stripe.net.RequestOptions;
import com.stripe.param.RefundCollectionListParams;
import com.stripe.param.RefundCollectionRetrieveParams;
import java.util.Map;
public class RefundCollection extends StripeCollection {
/**
* You can see a list of the refunds belonging to a specific charge. Note that the 10 most recent
* refunds are always available by default on the charge object. If you need more than those 10,
* you can use this API method and the limit
and starting_after
* parameters to page through additional refunds.
*/
public RefundCollection list(Map params) throws StripeException {
return list(params, (RequestOptions) null);
}
/**
* You can see a list of the refunds belonging to a specific charge. Note that the 10 most recent
* refunds are always available by default on the charge object. If you need more than those 10,
* you can use this API method and the limit
and starting_after
* parameters to page through additional refunds.
*/
public RefundCollection list(Map params, RequestOptions options)
throws StripeException {
String url = String.format("%s%s", Stripe.getApiBase(), this.getUrl());
return ApiResource.requestCollection(url, params, RefundCollection.class, options);
}
/**
* You can see a list of the refunds belonging to a specific charge. Note that the 10 most recent
* refunds are always available by default on the charge object. If you need more than those 10,
* you can use this API method and the limit
and starting_after
* parameters to page through additional refunds.
*/
public RefundCollection list(RefundCollectionListParams params) throws StripeException {
return list(params, (RequestOptions) null);
}
/**
* You can see a list of the refunds belonging to a specific charge. Note that the 10 most recent
* refunds are always available by default on the charge object. If you need more than those 10,
* you can use this API method and the limit
and starting_after
* parameters to page through additional refunds.
*/
public RefundCollection list(RefundCollectionListParams params, RequestOptions options)
throws StripeException {
String url = String.format("%s%s", Stripe.getApiBase(), this.getUrl());
return ApiResource.requestCollection(url, params, RefundCollection.class, options);
}
/** Retrieves the details of an existing refund. */
public Refund retrieve(String id) throws StripeException {
return retrieve(id, (Map) null, (RequestOptions) null);
}
/** Retrieves the details of an existing refund. */
public Refund retrieve(String id, RequestOptions options) throws StripeException {
return retrieve(id, (Map) null, options);
}
/** Retrieves the details of an existing refund. */
public Refund retrieve(String id, Map params, RequestOptions options)
throws StripeException {
String url =
String.format(
"%s%s",
Stripe.getApiBase(),
String.format("%s/%s", this.getUrl(), ApiResource.urlEncodeId(id)));
return ApiResource.request(ApiResource.RequestMethod.GET, url, params, Refund.class, options);
}
/** Retrieves the details of an existing refund. */
public Refund retrieve(String id, RefundCollectionRetrieveParams params, RequestOptions options)
throws StripeException {
String url =
String.format(
"%s%s",
Stripe.getApiBase(),
String.format("%s/%s", this.getUrl(), ApiResource.urlEncodeId(id)));
return ApiResource.request(ApiResource.RequestMethod.GET, url, params, Refund.class, options);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy