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

com.google.firebase.messaging.internal.MessagingServiceResponse Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 9.3.0
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy