com.stripe.model.ExternalAccountCollection 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.ExternalAccountCollectionCreateParams;
import com.stripe.param.ExternalAccountCollectionListParams;
import com.stripe.param.ExternalAccountCollectionRetrieveParams;
import java.util.Map;
public class ExternalAccountCollection extends StripeCollection {
/** List external accounts for an account. */
public ExternalAccountCollection list(Map params) throws StripeException {
return list(params, (RequestOptions) null);
}
/** List external accounts for an account. */
public ExternalAccountCollection list(Map params, RequestOptions options)
throws StripeException {
String url = String.format("%s%s", Stripe.getApiBase(), this.getUrl());
return ApiResource.requestCollection(url, params, ExternalAccountCollection.class, options);
}
/** List external accounts for an account. */
public ExternalAccountCollection list(ExternalAccountCollectionListParams params)
throws StripeException {
return list(params, (RequestOptions) null);
}
/** List external accounts for an account. */
public ExternalAccountCollection list(
ExternalAccountCollectionListParams params, RequestOptions options) throws StripeException {
String url = String.format("%s%s", Stripe.getApiBase(), this.getUrl());
return ApiResource.requestCollection(url, params, ExternalAccountCollection.class, options);
}
/** Retrieve a specified external account for a given account. */
public ExternalAccount retrieve(String id) throws StripeException {
return retrieve(id, (Map) null, (RequestOptions) null);
}
/** Retrieve a specified external account for a given account. */
public ExternalAccount retrieve(String id, RequestOptions options) throws StripeException {
return retrieve(id, (Map) null, options);
}
/** Retrieve a specified external account for a given account. */
public ExternalAccount 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, ExternalAccount.class, options);
}
/** Retrieve a specified external account for a given account. */
public ExternalAccount retrieve(
String id, ExternalAccountCollectionRetrieveParams 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, ExternalAccount.class, options);
}
/** Create an external account for a given account. */
public ExternalAccount create(Map params) throws StripeException {
return create(params, (RequestOptions) null);
}
/** Create an external account for a given account. */
public ExternalAccount create(Map params, RequestOptions options)
throws StripeException {
String url = String.format("%s%s", Stripe.getApiBase(), this.getUrl());
return ApiResource.request(
ApiResource.RequestMethod.POST, url, params, ExternalAccount.class, options);
}
/** Create an external account for a given account. */
public ExternalAccount create(ExternalAccountCollectionCreateParams params)
throws StripeException {
return create(params, (RequestOptions) null);
}
/** Create an external account for a given account. */
public ExternalAccount create(
ExternalAccountCollectionCreateParams params, RequestOptions options) throws StripeException {
String url = String.format("%s%s", Stripe.getApiBase(), this.getUrl());
return ApiResource.request(
ApiResource.RequestMethod.POST, url, params, ExternalAccount.class, options);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy