-
public class BatchPushRegistrationClass holding the push registration information.
-
-
Constructor Summary
Constructors Constructor Description BatchPushRegistration(String provider, String registrationID, String senderID, String gcpProjectID)
-
Method Summary
Modifier and Type Method Description StringgetProvider()Get the Push registration provider. StringgetSenderID()The Sender ID of the provider, or equivalent. StringgetGcpProjectID()The GCP Project ID. StringgetToken()Get the registration Push Token (also known as registration id). -
-
Method Detail
-
getProvider
@NonNull() String getProvider()
Get the Push registration provider. Might be FCM-Token or HMS.
-
getSenderID
@Nullable() String getSenderID()
The Sender ID of the provider, or equivalent. Also known as the GCP Project Number.For example: "8122930293"
-
getGcpProjectID
@Nullable() String getGcpProjectID()
The GCP Project ID. For example "batch_sample".Not to be confused with Sender ID, which is the Project Number. (FCM only)
-
-
-
-