@@ -107,3 +107,36 @@ import Foundation
107107 return result
108108 }
109109}
110+
111+ /// ClickstreamAnalytics preset item keys for objective-c
112+ /// In addition to the item attributes defined below, you can add up to 10 custom attributes to an item.
113+ @objcMembers public class ClickstreamItemKey : NSObject {
114+ /// The id of the item
115+ public static let ITEM_ID = " id "
116+ /// The name of the item
117+ public static let ITEM_NAME = " name "
118+ /// The location id of the item
119+ public static let LOCATION_ID = " location_id "
120+ /// The brand of the item
121+ public static let ITEM_BRAND = " brand "
122+ /// The currency of the item
123+ public static let CURRENCY = " currency "
124+ /// The price of the item
125+ public static let PRICE = " price "
126+ /// The quantity of the item
127+ public static let QUANTITY = " quantity "
128+ /// The creative name of the item
129+ public static let CREATIVE_NAME = " creative_name "
130+ /// The creative slot of the item
131+ public static let CREATIVE_SLOT = " creative_slot "
132+ /// The category of the item
133+ public static let ITEM_CATEGORY = " item_category "
134+ /// The category2 of the item
135+ public static let ITEM_CATEGORY2 = " item_category2 "
136+ /// The category3 of the item
137+ public static let ITEM_CATEGORY3 = " item_category3 "
138+ /// The category4 of the item
139+ public static let ITEM_CATEGORY4 = " item_category4 "
140+ /// The category5 of the item
141+ public static let ITEM_CATEGORY5 = " item_category5 "
142+ }
0 commit comments