com.stripe.model.MetadataStore Maven / Gradle / Ivy
package com.stripe.model;
import com.stripe.exception.StripeException;
import com.stripe.net.RequestOptions;
import java.util.Map;
/** Common interface for Stripe objects that can store metadata. */
public interface MetadataStore {
Map getMetadata();
MetadataStore update(Map params) throws StripeException;
MetadataStore update(Map params, RequestOptions options)
throws StripeException;
}