com.google.firebase.messaging.internal.MessagingServiceResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firebase-admin Show documentation
Show all versions of firebase-admin Show documentation
This is the official Firebase Admin Java SDK. Build extraordinary native JVM apps in
minutes with Firebase. The Firebase platform can power your app’s backend, user
authentication, static hosting, and more.
package com.google.firebase.messaging.internal;
import com.google.api.client.util.Key;
/**
* The DTO for parsing success responses from the FCM service.
*/
public class MessagingServiceResponse {
@Key("name")
private String messageId;
public String getMessageId() {
return this.messageId;
}
}