UserUniqueID
@objcMembers
public class UserUniqueID : NSObject, JSONConvertible
Extended ID UID objects from the given source.
-
Cookie or platform-native identifier.
Declaration
Swift
public var id: String -
Type of user agent the match is from. It is highly recommended to set this, as many DSPs separate app-native IDs from browser-based IDs and require a type value for ID resolution.
Declaration
Swift
public var aType: NSNumber -
Optional vendor-specific extensions.
Declaration
Swift
public var ext: [String : Any]? -
Initializes a new UserUniqueID object.
Declaration
Swift
public init(id: String, aType: NSNumber, ext: [String : Any]? = nil)Parameters
idCookie or platform-native identifier.
aTypeType of user agent the match is from. Recommended for DSP ID resolution.
extOptional vendor-specific extensions. Default is
nil.