You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// MatchMethod represents various ways an ID could be matched to an ad request, and if they pertain to a single property or app.
4
+
// It should be used on conjunction with the mm attribute in Object: EID of OpenRTB 2.x.
5
+
typeMatchMethodint64
6
+
7
+
// Various ways an ID could be matched to an ad request
8
+
const (
9
+
MatchMethodUnknownMatchMethod=0
10
+
MatchMethodNoMatchMatchMethod=1// No matching has occurred. The associated ID came directly from a 3rd-party cookie or OS-provided resettable device ID for advertising (IFA).
11
+
MatchMethodBrowserCookieSyncMatchMethod=2// Real time cookie sync as described in Appendix C (Cookie Based ID Syncing) of OpenRTB 2.x.
12
+
MatchMethodAuthenticatedMatchMethod=3// ID match was based on user authentication such as an email login or hashed PII.
13
+
MatchMethodObservedMatchMethod=4// ID match was based on a 1st party observation, but without user authentication (e.g. GUID, SharedID, Session IDs, CHIPS or other 1st party cookies contained in localStorage).
14
+
MatchMethodInferenceMatchMethod=5// ID match was inferred from linkage based on non-authenticated features across multiple browsers or devices (e.g. IP address and/or UserAgent).
0 commit comments