From 7ef9c97e14714954197ce2718a6c8335c76d2a00 Mon Sep 17 00:00:00 2001 From: Frank Schmitt Date: Fri, 23 Oct 2015 16:33:07 -0700 Subject: [PATCH] Update ATConnect.h Added comments to push providers. --- ApptentiveConnect/source/ATConnect.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ApptentiveConnect/source/ATConnect.h b/ApptentiveConnect/source/ATConnect.h index 9c55bfba6..ca93e39d1 100644 --- a/ApptentiveConnect/source/ATConnect.h +++ b/ApptentiveConnect/source/ATConnect.h @@ -44,9 +44,13 @@ extern NSString *const ATSurveyIDKey; /** Supported Push Providers for use in `setPushNotificationIntegration:withDeviceToken:` */ typedef NS_ENUM(NSInteger, ATPushProvider){ + /** Specifies the Apptentive push provider. */ ATPushProviderApptentive, + /** Specifies the Urban Airship push provider. */ ATPushProviderUrbanAirship, + /** Specifies the Amazon Simple Notification Service push provider. */ ATPushProviderAmazonSNS, + /** Specifies the Parse push provider. */ ATPushProviderParse, };