OOLogItemEvent
Objective-C
enum OOLogItemEvent : NSUInteger {}
Swift
enum OOLogItemEvent : UInt, @unchecked Sendable
Indicates which event an OOLogItem
instance relates to. Retrieve this
information from the OOLogItem.event
property.
-
Blank or inventory ad response received. Only dispatched during ad requests.
Declaration
Objective-C
OOLogItemEventNoAdResponse = 0
Swift
case noAdResponse = 0
-
Unaccepted or missing arguments. Only dispatched during session and tracker requests.
Declaration
Objective-C
OOLogItemEventInvalidArgument
Swift
case invalidArgument = 1
-
A request received an empty or malformed response. Potentially dispatched during all types of requests.
Declaration
Objective-C
OOLogItemEventInvalidResponse
Swift
case invalidResponse = 2
-
Error with no dedicated event type. Potentially dispatched during all types of requests.
Declaration
Objective-C
OOLogItemEventGeneralError
Swift
case generalError = 3
-
HTTP request failed. Potentially dispatched during all types of requests.
Declaration
Objective-C
OOLogItemEventRequestFailed
Swift
case requestFailed = 4
-
HTTP request timed out. Potentially dispatched during all types of requests.
Declaration
Objective-C
OOLogItemEventRequestTimeout
Swift
case requestTimeout = 5
-
SDK user canceled request. Only dispatched during ad requests.
Declaration
Objective-C
OOLogItemEventRequestCanceled
Swift
case requestCanceled = 6
-
Non-fatal warning message. Potentially dispatched during all types of requests.
Declaration
Objective-C
OOLogItemEventWarning
Swift
case warning = 7
-
The user tried to perform an operation not allowed in the current state. Only dispatched during tracker requests.
Declaration
Objective-C
OOLogItemEventIllegalOperation
Swift
case illegalOperation = 8