SnapscreenSportEventSearchResultEntry
@interface SnapscreenSportEventSearchResultEntry : SnapscreenSearchResultEntry
A single result entry from a sport event search. This represents an individual event at a certain point in time.
-
The event this result is associated to - only set if event is found
Declaration
Objective-C
@property (nonatomic, readonly, nullable) SnapscreenSportEvent *event;
Swift
var event: SnapscreenSportEvent? { get }
-
The channel this result is associated to - only set if no event was found as fallback
Declaration
Objective-C
@property (nonatomic, readonly, nullable) SnapscreenTvChannel *channel;
Swift
var channel: SnapscreenTvChannel? { get }
-
The unix timestamp (milliseconds since 1.1.1970) that represents the recognized frame
Declaration
Objective-C
@property (nonatomic, readonly) long long timestamp;
Swift
var timestamp: Int64 { get }
-
A relative delta to the current snapscreen timestamp - use this for very exact syncing with the backend by adding to [SnapscreenKit currentSnapscreenTimestamp]
Declaration
Objective-C
@property (nonatomic, readonly) long long snapscreenTimestampDelta;
Swift
var snapscreenTimestampDelta: Int64 { get }