TMBEventResponse
@interface TMBEventResponse : NSObject <TMBObjectDecodable>
A TMBEventResponse represents an array of deserialized Event objects, and an array of deserialized Discovery objects from the Tamber API’s event endpoint. - see: https://tamber.com/docs/api/#event
-
An array of
TMBEventobjects. Because thepublishableProjectKeydoes not allow event-retrieve operations, this array will only contain the event that was tracked (on success). - see: https://tamber.com/docs/api/#event-objectDeclaration
Objective-C
@property (nonatomic, nullable) NSArray *events;Swift
var events: [Any]? { get set } -
An array of
TMBDiscoveryobjects. Is only set if theTMBEventParamspassed had getRecs set.Declaration
Objective-C
@property (nonatomic, nullable) NSArray *recs;Swift
var recs: [Any]? { get set }
View on GitHub
TMBEventResponse Class Reference