All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.paymentrequest.PaymentItem Maven / Gradle / Ivy

package js.web.paymentrequest;

import js.lang.Any;
import org.teavm.jso.JSProperty;


public interface PaymentItem extends Any {
    @JSProperty
    PaymentCurrencyAmount getAmount();

    @JSProperty
    void setAmount(PaymentCurrencyAmount amount);

    @JSProperty
    String getLabel();

    @JSProperty
    void setLabel(String label);

    @JSProperty
    boolean isPending();

    @JSProperty
    void setPending(boolean pending);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy