com.stripe.model.ExternalAccount Maven / Gradle / Ivy
// File generated from our OpenAPI spec
package com.stripe.model;
import com.stripe.exception.StripeException;
import com.stripe.net.RequestOptions;
import java.util.Map;
public interface ExternalAccount extends StripeObjectInterface, HasId {
ExternalAccount update(Map params, RequestOptions options) throws StripeException;
ExternalAccount update(Map params) throws StripeException;
ExternalAccount delete(Map params, RequestOptions options) throws StripeException;
ExternalAccount delete() throws StripeException;
ExternalAccount delete(RequestOptions options) throws StripeException;
ExternalAccount delete(Map params) throws StripeException;
}