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.Person;
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.AccountPersonCreateParams;
import com.stripe.param.AccountPersonListParams;
import com.stripe.param.AccountPersonRetrieveParams;
import com.stripe.param.AccountPersonUpdateParams;
public final class AccountPersonService extends ApiService {
public AccountPersonService(StripeResponseGetter responseGetter) {
super(responseGetter);
}
/**
* Deletes an existing person’s relationship to the account’s legal entity. Any person with a
* relationship for an account can be deleted through the API, except if the person is the {@code
* account_opener}. If your integration is using the {@code executive} parameter, you cannot
* delete the only verified {@code executive} on file.
*/
public Person delete(String account, String person) throws StripeException {
return delete(account, person, (RequestOptions) null);
}
/**
* Deletes an existing person’s relationship to the account’s legal entity. Any person with a
* relationship for an account can be deleted through the API, except if the person is the {@code
* account_opener}. If your integration is using the {@code executive} parameter, you cannot
* delete the only verified {@code executive} on file.
*/
public Person delete(String account, String person, RequestOptions options)
throws StripeException {
String path =
String.format(
"/v1/accounts/%s/persons/%s",
ApiResource.urlEncodeId(account), ApiResource.urlEncodeId(person));
ApiRequest request =
new ApiRequest(BaseAddress.API, ApiResource.RequestMethod.DELETE, path, null, options);
return this.request(request, Person.class);
}
/** Retrieves an existing person. */
public Person retrieve(String account, String person, AccountPersonRetrieveParams params)
throws StripeException {
return retrieve(account, person, params, (RequestOptions) null);
}
/** Retrieves an existing person. */
public Person retrieve(String account, String person, RequestOptions options)
throws StripeException {
return retrieve(account, person, (AccountPersonRetrieveParams) null, options);
}
/** Retrieves an existing person. */
public Person retrieve(String account, String person) throws StripeException {
return retrieve(account, person, (AccountPersonRetrieveParams) null, (RequestOptions) null);
}
/** Retrieves an existing person. */
public Person retrieve(
String account, String person, AccountPersonRetrieveParams params, RequestOptions options)
throws StripeException {
String path =
String.format(
"/v1/accounts/%s/persons/%s",
ApiResource.urlEncodeId(account), ApiResource.urlEncodeId(person));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, Person.class);
}
/** Updates an existing person. */
public Person update(String account, String person, AccountPersonUpdateParams params)
throws StripeException {
return update(account, person, params, (RequestOptions) null);
}
/** Updates an existing person. */
public Person update(String account, String person, RequestOptions options)
throws StripeException {
return update(account, person, (AccountPersonUpdateParams) null, options);
}
/** Updates an existing person. */
public Person update(String account, String person) throws StripeException {
return update(account, person, (AccountPersonUpdateParams) null, (RequestOptions) null);
}
/** Updates an existing person. */
public Person update(
String account, String person, AccountPersonUpdateParams params, RequestOptions options)
throws StripeException {
String path =
String.format(
"/v1/accounts/%s/persons/%s",
ApiResource.urlEncodeId(account), ApiResource.urlEncodeId(person));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.POST,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, Person.class);
}
/**
* Returns a list of people associated with the account’s legal entity. The people are returned
* sorted by creation date, with the most recent people appearing first.
*/
public StripeCollection list(String account, AccountPersonListParams params)
throws StripeException {
return list(account, params, (RequestOptions) null);
}
/**
* Returns a list of people associated with the account’s legal entity. The people are returned
* sorted by creation date, with the most recent people appearing first.
*/
public StripeCollection list(String account, RequestOptions options)
throws StripeException {
return list(account, (AccountPersonListParams) null, options);
}
/**
* Returns a list of people associated with the account’s legal entity. The people are returned
* sorted by creation date, with the most recent people appearing first.
*/
public StripeCollection list(String account) throws StripeException {
return list(account, (AccountPersonListParams) null, (RequestOptions) null);
}
/**
* Returns a list of people associated with the account’s legal entity. The people are returned
* sorted by creation date, with the most recent people appearing first.
*/
public StripeCollection list(
String account, AccountPersonListParams params, RequestOptions options)
throws StripeException {
String path = String.format("/v1/accounts/%s/persons", ApiResource.urlEncodeId(account));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.GET,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, new TypeToken>() {}.getType());
}
/** Creates a new person. */
public Person create(String account, AccountPersonCreateParams params) throws StripeException {
return create(account, params, (RequestOptions) null);
}
/** Creates a new person. */
public Person create(String account, RequestOptions options) throws StripeException {
return create(account, (AccountPersonCreateParams) null, options);
}
/** Creates a new person. */
public Person create(String account) throws StripeException {
return create(account, (AccountPersonCreateParams) null, (RequestOptions) null);
}
/** Creates a new person. */
public Person create(String account, AccountPersonCreateParams params, RequestOptions options)
throws StripeException {
String path = String.format("/v1/accounts/%s/persons", ApiResource.urlEncodeId(account));
ApiRequest request =
new ApiRequest(
BaseAddress.API,
ApiResource.RequestMethod.POST,
path,
ApiRequestParams.paramsToMap(params),
options);
return this.request(request, Person.class);
}
}