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.
// 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.Price;
import com.stripe.model.StripeCollection;
import com.stripe.model.StripeSearchResult;
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.PriceCreateParams;
import com.stripe.param.PriceListParams;
import com.stripe.param.PriceRetrieveParams;
import com.stripe.param.PriceSearchParams;
import com.stripe.param.PriceUpdateParams;
public final class PriceService extends ApiService {
public PriceService(StripeResponseGetter responseGetter) {
super(responseGetter);
}
/**
* Returns a list of your active prices, excluding inline prices.
* For the list of inactive prices, set {@code active} to false.
*/
public StripeCollection list(PriceListParams params) throws StripeException {
return list(params, (RequestOptions) null);
}
/**
* Returns a list of your active prices, excluding inline prices.
* For the list of inactive prices, set {@code active} to false.
*/
public StripeCollection list(RequestOptions options) throws StripeException {
return list((PriceListParams) null, options);
}
/**
* Returns a list of your active prices, excluding inline prices.
* For the list of inactive prices, set {@code active} to false.
*/
public StripeCollection list() throws StripeException {
return list((PriceListParams) null, (RequestOptions) null);
}
/**
* Returns a list of your active prices, excluding inline prices.
* For the list of inactive prices, set {@code active} to false.
*/
public StripeCollection list(PriceListParams params, RequestOptions options)
throws StripeException {
String path = "/v1/prices";
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, new TypeToken>() {}.getType());
}
/** Creates a new price for an existing product. The price can be recurring or one-time. */
public Price create(PriceCreateParams params) throws StripeException {
return create(params, (RequestOptions) null);
}
/** Creates a new price for an existing product. The price can be recurring or one-time. */
public Price create(PriceCreateParams params, RequestOptions options) throws StripeException {
String path = "/v1/prices";
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.POST,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, Price.class);
}
/** Retrieves the price with the given ID. */
public Price retrieve(String price, PriceRetrieveParams params) throws StripeException {
return retrieve(price, params, (RequestOptions) null);
}
/** Retrieves the price with the given ID. */
public Price retrieve(String price, RequestOptions options) throws StripeException {
return retrieve(price, (PriceRetrieveParams) null, options);
}
/** Retrieves the price with the given ID. */
public Price retrieve(String price) throws StripeException {
return retrieve(price, (PriceRetrieveParams) null, (RequestOptions) null);
}
/** Retrieves the price with the given ID. */
public Price retrieve(String price, PriceRetrieveParams params, RequestOptions options)
throws StripeException {
String path = String.format("/v1/prices/%s", ApiResource.urlEncodeId(price));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, Price.class);
}
/**
* Updates the specified price by setting the values of the parameters passed. Any parameters not
* provided are left unchanged.
*/
public Price update(String price, PriceUpdateParams params) throws StripeException {
return update(price, params, (RequestOptions) null);
}
/**
* Updates the specified price by setting the values of the parameters passed. Any parameters not
* provided are left unchanged.
*/
public Price update(String price, RequestOptions options) throws StripeException {
return update(price, (PriceUpdateParams) null, options);
}
/**
* Updates the specified price by setting the values of the parameters passed. Any parameters not
* provided are left unchanged.
*/
public Price update(String price) throws StripeException {
return update(price, (PriceUpdateParams) null, (RequestOptions) null);
}
/**
* Updates the specified price by setting the values of the parameters passed. Any parameters not
* provided are left unchanged.
*/
public Price update(String price, PriceUpdateParams params, RequestOptions options)
throws StripeException {
String path = String.format("/v1/prices/%s", ApiResource.urlEncodeId(price));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.POST,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, Price.class);
}
/**
* Search for prices you’ve previously created using Stripe’s Search Query Language. Don’t
* use search in read-after-write flows where strict consistency is necessary. Under normal
* operating conditions, data is searchable in less than a minute. Occasionally, propagation of
* new or updated data can be up to an hour behind during outages. Search functionality is not
* available to merchants in India.
*/
public StripeSearchResult search(PriceSearchParams params) throws StripeException {
return search(params, (RequestOptions) null);
}
/**
* Search for prices you’ve previously created using Stripe’s Search Query Language. Don’t
* use search in read-after-write flows where strict consistency is necessary. Under normal
* operating conditions, data is searchable in less than a minute. Occasionally, propagation of
* new or updated data can be up to an hour behind during outages. Search functionality is not
* available to merchants in India.
*/
public StripeSearchResult search(PriceSearchParams params, RequestOptions options)
throws StripeException {
String path = "/v1/prices/search";
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, new TypeToken>() {}.getType());
}
}