OOLogItemSource
Objective-C
enum OOLogItemSource : NSUInteger {}
Swift
enum OOLogItemSource : UInt, @unchecked Sendable
Indicates which subsystem is the source of an OOLogItem
. Retrieve this
information from the OOLogItem.source
property.
-
Indicates that the LogItem relates to an ad request.
Declaration
Objective-C
OOLogItemSourceAd = 0
Swift
case ad = 0
-
Indicates that the LogItem relates to a session request.
Declaration
Objective-C
OOLogItemSourceSession
Swift
case session = 1
-
Indicates that the LogItem relates to a tracking request.
Declaration
Objective-C
OOLogItemSourceTracker
Swift
case tracker = 2
-
Indicates that the item relates to an omid ad session request.
Declaration
Objective-C
OOLogItemSourceOmid
Swift
case omid = 3