
org.infobip.mobile.messaging.api.messages.MessageResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infobip-mobile-messaging-api-java Show documentation
Show all versions of infobip-mobile-messaging-api-java Show documentation
Mobile Messaging SDK for Android
The newest version!
package org.infobip.mobile.messaging.api.messages;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @author pandric on 09/09/16.
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class MessageResponse {
@SerializedName("gcm.notification.messageId")
String messageId;
@SerializedName("gcm.notification.title")
String title;
@SerializedName("gcm.notification.body")
String body;
@SerializedName("gcm.notification.sound")
String sound;
@SerializedName("gcm.notification.vibrate")
String vibrate;
@SerializedName("gcm.notification.silent")
String silent;
@SerializedName("gcm.notification.category")
String category;
@Expose
String customPayload;
@Expose
String internalData;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy