// Makes a request to onesignal.com to get current tags set on the player and then run the callback passed in.
 public static void GetTags(TagsAvailable tagsAvailableDelegate)
 {
                 #if ONESIGNAL_PLATFORM
     OneSignal.tagsAvailableDelegate = tagsAvailableDelegate;
     oneSignalPlatform.GetTags();
                 #endif
 }
 // Makes a request to onesignal.com to get current tags set on the player and then run the callback passed in.
 public static void GetTags(TagsReceived inTagsReceivedDelegate)
 {
   #if ONESIGNAL_PLATFORM
     tagsReceivedDelegate = inTagsReceivedDelegate;
     oneSignalPlatform.GetTags();
   #endif
 }
 public static void GetTags()
 {
     #if ONESIGNAL_PLATFORM
     oneSignalPlatform.GetTags(null);
     #endif
 }