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 = 1

    Swift

    case javaScriptOwner = 1
  • The integration will send the event from the native layer.

    Declaration

    Objective-C

    OMIDNativeOwner = 2

    Swift

    case nativeOwner = 2
  • The integration will not send the event.

    Declaration

    Objective-C

    OMIDNoneOwner = 3

    Swift

    case noneOwner = 3