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

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

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