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 = 0Swift
case noAdResponse = 0 -
Unaccepted or missing arguments. Only dispatched during session and tracker requests.
Declaration
Objective-C
OOLogItemEventInvalidArgumentSwift
case invalidArgument = 1 -
A request received an empty or malformed response. Potentially dispatched during all types of requests.
Declaration
Objective-C
OOLogItemEventInvalidResponseSwift
case invalidResponse = 2 -
Error with no dedicated event type. Potentially dispatched during all types of requests.
Declaration
Objective-C
OOLogItemEventGeneralErrorSwift
case generalError = 3 -
HTTP request failed. Potentially dispatched during all types of requests.
Declaration
Objective-C
OOLogItemEventRequestFailedSwift
case requestFailed = 4 -
HTTP request timed out. Potentially dispatched during all types of requests.
Declaration
Objective-C
OOLogItemEventRequestTimeoutSwift
case requestTimeout = 5 -
SDK user canceled request. Only dispatched during ad requests.
Declaration
Objective-C
OOLogItemEventRequestCanceledSwift
case requestCanceled = 6 -
Non-fatal warning message. Potentially dispatched during all types of requests.
Declaration
Objective-C
OOLogItemEventWarningSwift
case warning = 7 -
The user tried to perform an operation not allowed in the current state. Only dispatched during tracker requests.
Declaration
Objective-C
OOLogItemEventIllegalOperationSwift
case illegalOperation = 8