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
* Traits are pieces of information you know about a user that are included in an identify call. These could be demographics like age or gender, account-specific like plan, or even things like whether a user has seen a particular A/B test variation. Up to you!
44
-
* Segment has reserved some traits that have semantic meanings for users, and we handle them in special ways. For example, Segment always expects email to be a string of the user’s email address.
45
-
*
46
-
* We’ll send this on to destinations like Mailchimp that require an email address for their tracking.
47
-
*
48
-
* You should only use reserved traits for their intended meaning.
* Traits are pieces of information you know about a user that are included in an identify call. These could be demographics like age or gender, account-specific like plan, or even things like whether a user has seen a particular A/B test variation. Up to you!
11
+
* Segment has reserved some traits that have semantic meanings for users, and we handle them in special ways. For example, Segment always expects email to be a string of the user’s email address.
12
+
*
13
+
* We’ll send this on to destinations like Mailchimp that require an email address for their tracking.
14
+
*
15
+
* You should only use reserved traits for their intended meaning.
16
+
*/
17
+
exportinterfaceTraitsextendsCoreAnalyticsTraits{}
18
+
19
+
/**
20
+
* A dictionary of extra context to attach to the call.
21
+
* Note: context differs from traits because it is not attributes of the user itself.
0 commit comments