API:System.PushNotification.TPushService.TServiceNames
Delphi
      TServiceNames = record
      public const
        GCM = 'gcm';  // deprecated 'Is not available anymore. Please use FCM instead';  // Google cloud messaging
        FCM = 'fcm';  // Google Firebase cloud messaging
        APS = 'aps';  // Apple
      end;
C++
struct DECLSPEC_DRECORD TServiceNames
{
public:
    #define TPushService_TServiceNames_GCM L"gcm"
    #define TPushService_TServiceNames_FCM L"fcm"
    #define TPushService_TServiceNames_APS L"aps"
};
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| record struct | public | System.PushNotification.pas System.PushNotification.hpp | System.PushNotification | TPushService | 
Description
Embarcadero Technologies does not currently have any additional information.