io.github.yawenok.fcm.client.request.Notification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fcm-client Show documentation
Show all versions of fcm-client Show documentation
FCM client for java!Based on HttpAsyncClient.
The newest version!
package io.github.yawenok.fcm.client.request;
import com.alibaba.fastjson.annotation.JSONField;
public class Notification {
@JSONField(name = "title")
protected String title;
@JSONField(name = "body")
protected String body;
@JSONField(name = "click_action")
protected String clickAction;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
public String getClickAction() {
return clickAction;
}
public void setClickAction(String clickAction) {
this.clickAction = clickAction;
}
}