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

js.web.push.PushSubscriptionJSON Maven / Gradle / Ivy

package js.web.push;

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

import javax.annotation.Nullable;


public interface PushSubscriptionJSON extends Any {
    @JSProperty
    @Nullable
    String getEndpoint();

    @JSProperty
    void setEndpoint(String endpoint);

    @JSProperty
    double getExpirationTime();

    @JSProperty
    void setExpirationTime(double expirationTime);

    @JSProperty
    @Nullable
    StringRecord getKeys();

    @JSProperty
    void setKeys(StringRecord keys);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy