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 TMBEvent objects. Because the publishableProjectKey does not allow event-retrieve operations, this array will only contain the event that was tracked (on success). - see: https://tamber.com/docs/api/#event-object

    Declaration

    Objective-C

    @property (nonatomic, nullable) NSArray *events;

    Swift

    var events: [Any]? { get set }
  • An array of TMBDiscovery objects. Is only set if the TMBEventParams passed had getRecs set.

    Declaration

    Objective-C

    @property (nonatomic, nullable) NSArray *recs;

    Swift

    var recs: [Any]? { get set }