UNPKG

mixpanel-react-native

Version:

Official React Native Tracking Library for Mixpanel Analytics

966 lines (232 loc) 11.3 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JSDoc: Class: MixpanelGroup</title> <script src="scripts/prettify/prettify.js"> </script> <script src="scripts/prettify/lang-css.js"> </script> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css"> <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css"> </head> <body> <div id="main"> <h1 class="page-title">Class: MixpanelGroup</h1> <section> <header> <h2><span class="attribs"><span class="type-signature"></span></span>MixpanelGroup<span class="signature">()</span><span class="type-signature"></span></h2> <div class="class-description">Core class for using Mixpanel Group Analytics features. <p>The MixpanelGroup object is used to update properties in a group's Group Analytics record.</div> </header> <article> <div class="container-overview"> <h2>Constructor</h2> <h4 class="name" id="MixpanelGroup"><span class="type-signature"></span>new MixpanelGroup<span class="signature">()</span><span class="type-signature"></span></h4> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="index.js.html">index.js</a>, <a href="index.js.html#line804">line 804</a> </li></ul></dd> </dl> </div> <h3 class="subsection-title">Classes</h3> <dl> <dt><a href="MixpanelGroup.html">MixpanelGroup</a></dt> <dd></dd> </dl> <h3 class="subsection-title">Methods</h3> <h4 class="name" id="remove"><span class="type-signature"></span>remove<span class="signature">(name, value)</span><span class="type-signature"></span></h4> <div class="description"> Remove value from a list-valued property only if it is already present in the list. If the property does not currently exist, the remove will be ignored. If the property exists and is not list-valued, the remove will be ignored. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>name</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="description last">the Group Analytics list-valued property that should have a value removed</td> </tr> <tr> <td class="name"><code>value</code></td> <td class="type"> <span class="param-type">any</span> </td> <td class="description last">the value that will be removed from the list</td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="index.js.html">index.js</a>, <a href="index.js.html#line890">line 890</a> </li></ul></dd> </dl> <h4 class="name" id="set"><span class="type-signature"></span>set<span class="signature">(prop, to)</span><span class="type-signature"></span></h4> <div class="description"> Sets a single property with the given name and value for this group. The given name and value will be assigned to the user in Mixpanel Group Analytics, possibly overwriting an existing property with the same name. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>prop</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="description last">The name of the Mixpanel property. This must be a String, for example "Zip Code"</td> </tr> <tr> <td class="name"><code>to</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="description last">The value to set on the given property name. For "Zip Code", this value might be the String "90210"</td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="index.js.html">index.js</a>, <a href="index.js.html#line823">line 823</a> </li></ul></dd> </dl> <h4 class="name" id="setOnce"><span class="type-signature"></span>setOnce<span class="signature">(prop, to)</span><span class="type-signature"></span></h4> <div class="description"> Works just like groupSet() except it will not overwrite existing property values. This is useful for properties like "First login date". </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>prop</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="description last">The name of the Mixpanel property. This must be a String, for example "Zip Code"</td> </tr> <tr> <td class="name"><code>to</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="description last">The value to set on the given property name. For "Zip Code", this value might be the String "90210"</td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="index.js.html">index.js</a>, <a href="index.js.html#line847">line 847</a> </li></ul></dd> </dl> <h4 class="name" id="union"><span class="type-signature"></span>union<span class="signature">(name, value)</span><span class="type-signature"></span></h4> <div class="description"> Adds values to a list-valued property only if they are not already present in the list. If the property does not currently exist, it will be created with the given list as its value. If the property exists and is not list-valued, the union will be ignored. </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>name</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="description last">name of the list-valued property to set or modify</td> </tr> <tr> <td class="name"><code>value</code></td> <td class="type"> <span class="param-type">array</span> </td> <td class="description last">an array of values to add to the property value if not already present</td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="index.js.html">index.js</a>, <a href="index.js.html#line912">line 912</a> </li></ul></dd> </dl> <h4 class="name" id="unset"><span class="type-signature"></span>unset<span class="signature">(prop)</span><span class="type-signature"></span></h4> <div class="description"> Permanently removes the property with the given name from the group's profile </div> <h5>Parameters:</h5> <table class="params"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>prop</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="description last">name of a property to unset</td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="index.js.html">index.js</a>, <a href="index.js.html#line870">line 870</a> </li></ul></dd> </dl> </article> </section> </div> <nav> <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Mixpanel.html">Mixpanel</a></li><li><a href="MixpanelGroup.html">MixpanelGroup</a></li><li><a href="People.html">People</a></li></ul> </nav> <br class="clear"> <footer> Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.6</a> on Tue May 14 2024 09:36:01 GMT-0700 (Pacific Daylight Time) </footer> <script> prettyPrint(); </script> <script src="scripts/linenumber.js"> </script> </body> </html>