com.stripe.service.capital.FinancingOfferService Maven / Gradle / Ivy
// File generated from our OpenAPI spec
package com.stripe.service.capital;
import com.google.gson.reflect.TypeToken;
import com.stripe.exception.StripeException;
import com.stripe.model.StripeCollection;
import com.stripe.model.capital.FinancingOffer;
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.capital.FinancingOfferListParams;
import com.stripe.param.capital.FinancingOfferMarkDeliveredParams;
import com.stripe.param.capital.FinancingOfferRetrieveParams;
public final class FinancingOfferService extends ApiService {
public FinancingOfferService(StripeResponseGetter responseGetter) {
super(responseGetter);
}
/**
* Retrieves the financing offers available for Connected accounts that belong to your platform.
*/
public StripeCollection list(FinancingOfferListParams params)
throws StripeException {
return list(params, (RequestOptions) null);
}
/**
* Retrieves the financing offers available for Connected accounts that belong to your platform.
*/
public StripeCollection list(RequestOptions options) throws StripeException {
return list((FinancingOfferListParams) null, options);
}
/**
* Retrieves the financing offers available for Connected accounts that belong to your platform.
*/
public StripeCollection list() throws StripeException {
return list((FinancingOfferListParams) null, (RequestOptions) null);
}
/**
* Retrieves the financing offers available for Connected accounts that belong to your platform.
*/
public StripeCollection list(
FinancingOfferListParams params, RequestOptions options) throws StripeException {
String path = "/v1/capital/financing_offers";
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, new TypeToken>() {}.getType());
}
/** Get the details of the financing offer. */
public FinancingOffer retrieve(String financingOffer, FinancingOfferRetrieveParams params)
throws StripeException {
return retrieve(financingOffer, params, (RequestOptions) null);
}
/** Get the details of the financing offer. */
public FinancingOffer retrieve(String financingOffer, RequestOptions options)
throws StripeException {
return retrieve(financingOffer, (FinancingOfferRetrieveParams) null, options);
}
/** Get the details of the financing offer. */
public FinancingOffer retrieve(String financingOffer) throws StripeException {
return retrieve(financingOffer, (FinancingOfferRetrieveParams) null, (RequestOptions) null);
}
/** Get the details of the financing offer. */
public FinancingOffer retrieve(
String financingOffer, FinancingOfferRetrieveParams params, RequestOptions options)
throws StripeException {
String path =
String.format("/v1/capital/financing_offers/%s", ApiResource.urlEncodeId(financingOffer));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, FinancingOffer.class);
}
/**
* Acknowledges that platform has received and delivered the financing_offer to the intended
* merchant recipient.
*/
public FinancingOffer markDelivered(
String financingOffer, FinancingOfferMarkDeliveredParams params) throws StripeException {
return markDelivered(financingOffer, params, (RequestOptions) null);
}
/**
* Acknowledges that platform has received and delivered the financing_offer to the intended
* merchant recipient.
*/
public FinancingOffer markDelivered(String financingOffer, RequestOptions options)
throws StripeException {
return markDelivered(financingOffer, (FinancingOfferMarkDeliveredParams) null, options);
}
/**
* Acknowledges that platform has received and delivered the financing_offer to the intended
* merchant recipient.
*/
public FinancingOffer markDelivered(String financingOffer) throws StripeException {
return markDelivered(
financingOffer, (FinancingOfferMarkDeliveredParams) null, (RequestOptions) null);
}
/**
* Acknowledges that platform has received and delivered the financing_offer to the intended
* merchant recipient.
*/
public FinancingOffer markDelivered(
String financingOffer, FinancingOfferMarkDeliveredParams params, RequestOptions options)
throws StripeException {
String path =
String.format(
"/v1/capital/financing_offers/%s/mark_delivered",
ApiResource.urlEncodeId(financingOffer));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.POST,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, FinancingOffer.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy