OMIDOwner
Objective-C
enum OMIDOwner : NSUInteger {}
Swift
enum OMIDOwner : UInt, @unchecked Sendable
Identifies which integration layer is responsible for sending certain events.
-
The integration will send the event from a JavaScript session script.
Declaration
Objective-C
OMIDJavaScriptOwner = 1Swift
case javaScriptOwner = 1 -
The integration will send the event from the native layer.
Declaration
Objective-C
OMIDNativeOwner = 2Swift
case nativeOwner = 2 -
The integration will not send the event.
Declaration
Objective-C
OMIDNoneOwner = 3Swift
case noneOwner = 3