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

io.github.yawenok.fcm.client.request.platform.WebNotification Maven / Gradle / Ivy

The newest version!
package io.github.yawenok.fcm.client.request.platform;

import com.alibaba.fastjson.annotation.JSONField;
import io.github.yawenok.fcm.client.request.Notification;

public class WebNotification extends Notification {
    @JSONField(name = "icon")
    protected String icon;

    public String getIcon() {
        return icon;
    }

    public void setIcon(String icon) {
        this.icon = icon;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy