All Downloads are FREE. Search and download functionalities are using the official Maven repository.
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.PaymentLinkService 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.PaymentLink;
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.PaymentLinkCreateParams;
import com.stripe.param.PaymentLinkListParams;
import com.stripe.param.PaymentLinkRetrieveParams;
import com.stripe.param.PaymentLinkUpdateParams;
public final class PaymentLinkService extends ApiService {
public PaymentLinkService(StripeResponseGetter responseGetter) {
super(responseGetter);
}
/** Returns a list of your payment links. */
public StripeCollection list(PaymentLinkListParams params) throws StripeException {
return list(params, (RequestOptions) null);
}
/** Returns a list of your payment links. */
public StripeCollection list(RequestOptions options) throws StripeException {
return list((PaymentLinkListParams) null, options);
}
/** Returns a list of your payment links. */
public StripeCollection list() throws StripeException {
return list((PaymentLinkListParams) null, (RequestOptions) null);
}
/** Returns a list of your payment links. */
public StripeCollection list(PaymentLinkListParams params, RequestOptions options)
throws StripeException {
String path = "/v1/payment_links";
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, new TypeToken>() {}.getType());
}
/** Creates a payment link. */
public PaymentLink create(PaymentLinkCreateParams params) throws StripeException {
return create(params, (RequestOptions) null);
}
/** Creates a payment link. */
public PaymentLink create(PaymentLinkCreateParams params, RequestOptions options)
throws StripeException {
String path = "/v1/payment_links";
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.POST,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, PaymentLink.class);
}
/** Retrieve a payment link. */
public PaymentLink retrieve(String paymentLink, PaymentLinkRetrieveParams params)
throws StripeException {
return retrieve(paymentLink, params, (RequestOptions) null);
}
/** Retrieve a payment link. */
public PaymentLink retrieve(String paymentLink, RequestOptions options) throws StripeException {
return retrieve(paymentLink, (PaymentLinkRetrieveParams) null, options);
}
/** Retrieve a payment link. */
public PaymentLink retrieve(String paymentLink) throws StripeException {
return retrieve(paymentLink, (PaymentLinkRetrieveParams) null, (RequestOptions) null);
}
/** Retrieve a payment link. */
public PaymentLink retrieve(
String paymentLink, PaymentLinkRetrieveParams params, RequestOptions options)
throws StripeException {
String path = String.format("/v1/payment_links/%s", ApiResource.urlEncodeId(paymentLink));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, PaymentLink.class);
}
/** Updates a payment link. */
public PaymentLink update(String paymentLink, PaymentLinkUpdateParams params)
throws StripeException {
return update(paymentLink, params, (RequestOptions) null);
}
/** Updates a payment link. */
public PaymentLink update(String paymentLink, RequestOptions options) throws StripeException {
return update(paymentLink, (PaymentLinkUpdateParams) null, options);
}
/** Updates a payment link. */
public PaymentLink update(String paymentLink) throws StripeException {
return update(paymentLink, (PaymentLinkUpdateParams) null, (RequestOptions) null);
}
/** Updates a payment link. */
public PaymentLink update(
String paymentLink, PaymentLinkUpdateParams params, RequestOptions options)
throws StripeException {
String path = String.format("/v1/payment_links/%s", ApiResource.urlEncodeId(paymentLink));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.POST,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, PaymentLink.class);
}
public com.stripe.service.PaymentLinkLineItemService lineItems() {
return new com.stripe.service.PaymentLinkLineItemService(this.getResponseGetter());
}
}