com.stripe.model.StripeCollectionInterface Maven / Gradle / Ivy
package com.stripe.model;
import com.stripe.net.RequestOptions;
import java.util.List;
import java.util.Map;
public interface StripeCollectionInterface {
public List getData();
public Boolean getHasMore();
public Integer getTotalCount();
public String getURL();
/**
* Get request options that were used to fetch the collection. This is
* useful for purposes of pagination.
*/
public RequestOptions getRequestOptions();
/**
* Get request parameters that were used to fetch the collection. This is
* useful for purposes of pagination.
*/
public Map getRequestParams();
/**
* Set request options that were used to fetch the collection. This is
* required for purposes of pagination.
*/
public void setRequestOptions(RequestOptions requestOptions);
/**
* Set request parameters that were used to fetch the collection. This is
* required for purposes of pagination.
*/
public void setRequestParams(Map requestParams);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy