| | |
| | | /// not limited to these. You may supply extra Params for suggested Events or custom Params for |
| | | /// Custom events. Param names can be up to 40 characters long, may only contain alphanumeric |
| | | /// characters and underscores ("_"), and must start with an alphabetic character. Param values can |
| | | /// be up to 100 characters long. The "firebase_", "google_", and "ga_" prefixes are reserved and |
| | | /// should not be used. |
| | | /// be up to 100 characters long for standard Google Analytics properties and up to 500 characters |
| | | /// long for Google Analytics 360 properties. The "firebase_", "google_", and "ga_" prefixes are |
| | | /// reserved and should not be used. |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | |
| | | /// </pre> |
| | | static NSString *const kFIRParameterFlightNumber NS_SWIFT_NAME(AnalyticsParameterFlightNumber) = |
| | | @"flight_number"; |
| | | |
| | | /// Indicates if the user is on a free trial of a subscription. Specify 1 to indicate true and 0 to |
| | | /// indicate false (Int). |
| | | /// <pre> |
| | | /// let params = [ |
| | | /// AnalyticsParameterFreeTrial : 1, |
| | | /// // ... |
| | | /// ] |
| | | /// </pre> |
| | | static NSString *const kFIRParameterFreeTrial NS_SWIFT_NAME(AnalyticsParameterFreeTrial) = |
| | | @"free_trial"; |
| | | |
| | | /// Group/clan/guild ID (String). |
| | | /// <pre> |
| | |
| | | /// </pre> |
| | | static NSString *const kFIRParameterPrice NS_SWIFT_NAME(AnalyticsParameterPrice) = @"price"; |
| | | |
| | | /// Indicates if an item's price is discounted. Specify 1 to indicate true and 0 to indicate false |
| | | /// (Int). |
| | | /// <pre> |
| | | /// let params = [ |
| | | /// AnalyticsParameterPriceIsDiscounted : 1, |
| | | /// // ... |
| | | /// ] |
| | | /// </pre> |
| | | static NSString *const kFIRParameterPriceIsDiscounted |
| | | NS_SWIFT_NAME(AnalyticsParameterPriceIsDiscounted) = @"price_is_discounted"; |
| | | |
| | | /// The ID of a product (String). |
| | | /// <pre> |
| | | /// let params = [ |
| | | /// AnalyticsParameterProductID : "PROD_12345", |
| | | /// // ... |
| | | /// ] |
| | | /// </pre> |
| | | static NSString *const kFIRParameterProductID NS_SWIFT_NAME(AnalyticsParameterProductID) = |
| | | @"product_id"; |
| | | |
| | | /// The name of a product (String). |
| | | /// <pre> |
| | | /// let params = [ |
| | | /// AnalyticsParameterProductName : "My Awesome Product", |
| | | /// // ... |
| | | /// ] |
| | | /// </pre> |
| | | static NSString *const kFIRParameterProductName NS_SWIFT_NAME(AnalyticsParameterProductName) = |
| | | @"product_name"; |
| | | |
| | | /// The ID of a product promotion (String). |
| | | /// <pre> |
| | | /// let params = [ |
| | |
| | | static NSString *const kFIRParameterStartDate NS_SWIFT_NAME(AnalyticsParameterStartDate) = |
| | | @"start_date"; |
| | | |
| | | /// Indicates if the purchase is a subscription. Specify 1 to indicate true and 0 to indicate false |
| | | /// (Int). |
| | | /// <pre> |
| | | /// let params = [ |
| | | /// AnalyticsParameterSubscription : 1, |
| | | /// // ... |
| | | /// ] |
| | | /// </pre> |
| | | static NSString *const kFIRParameterSubscription NS_SWIFT_NAME(AnalyticsParameterSubscription) = |
| | | @"subscription"; |
| | | |
| | | /// The result of an operation. Specify 1 to indicate success and 0 to indicate failure (Int). |
| | | /// <pre> |
| | | /// let params = [ |