@@ -66,7 +66,7 @@ <h1 class="page-title">Source: identify.js</h1>
6666 * @public
6767 * @param {string} property - The user property key.
6868 * @param {number|string} value - The amount by which to increment the user property. Allows numbers as strings (ex: '123').
69- * @return {Identify_object } Returns the same Identify object, allowing you to chain multiple method calls together.
69+ * @return {Identify } Returns the same Identify object, allowing you to chain multiple method calls together.
7070 * @example var identify = new amplitude.Identify().add('karma', 1).add('friends', 1);
7171 * amplitude.identify(identify); // send the Identify call
7272 */
@@ -89,7 +89,7 @@ <h1 class="page-title">Source: identify.js</h1>
8989 * @param {string} property - The user property key.
9090 * @param {number|string|list|object} value - A value or values to append.
9191 * Values can be numbers, strings, lists, or object (key:value dict will be flattened).
92- * @return {Identify_object } Returns the same Identify object, allowing you to chain multiple method calls together.
92+ * @return {Identify } Returns the same Identify object, allowing you to chain multiple method calls together.
9393 * @example var identify = new amplitude.Identify().append('ab-tests', 'new-user-tests');
9494 * identify.append('some_list', [1, 2, 3, 4, 'values']);
9595 * amplitude.identify(identify); // send the Identify call
@@ -128,7 +128,7 @@ <h1 class="page-title">Source: identify.js</h1>
128128 * @param {string} property - The user property key.
129129 * @param {number|string|list|object} value - A value or values to prepend.
130130 * Values can be numbers, strings, lists, or object (key:value dict will be flattened).
131- * @return {Identify_object } Returns the same Identify object, allowing you to chain multiple method calls together.
131+ * @return {Identify } Returns the same Identify object, allowing you to chain multiple method calls together.
132132 * @example var identify = new amplitude.Identify().prepend('ab-tests', 'new-user-tests');
133133 * identify.prepend('some_list', [1, 2, 3, 4, 'values']);
134134 * amplitude.identify(identify); // send the Identify call
@@ -144,7 +144,7 @@ <h1 class="page-title">Source: identify.js</h1>
144144 * @param {string} property - The user property key.
145145 * @param {number|string|list|object} value - A value or values to set.
146146 * Values can be numbers, strings, lists, or object (key:value dict will be flattened).
147- * @return {Identify_object } Returns the same Identify object, allowing you to chain multiple method calls together.
147+ * @return {Identify } Returns the same Identify object, allowing you to chain multiple method calls together.
148148 * @example var identify = new amplitude.Identify().set('user_type', 'beta');
149149 * identify.set('name', {'first': 'John', 'last': 'Doe'}); // dict is flattened and becomes name.first: John, name.last: Doe
150150 * amplitude.identify(identify); // send the Identify call
@@ -162,7 +162,7 @@ <h1 class="page-title">Source: identify.js</h1>
162162 * @param {string} property - The user property key.
163163 * @param {number|string|list|object} value - A value or values to set once.
164164 * Values can be numbers, strings, lists, or object (key:value dict will be flattened).
165- * @return {Identify_object } Returns the same Identify object, allowing you to chain multiple method calls together.
165+ * @return {Identify } Returns the same Identify object, allowing you to chain multiple method calls together.
166166 * @example var identify = new amplitude.Identify().setOnce('sign_up_date', '2016-04-01');
167167 * amplitude.identify(identify); // send the Identify call
168168 */
@@ -175,7 +175,7 @@ <h1 class="page-title">Source: identify.js</h1>
175175 * Unset and remove a user property. This user property will no longer show up in a user's profile.
176176 * @public
177177 * @param {string} property - The user property key.
178- * @return {Identify_object } Returns the same Identify object, allowing you to chain multiple method calls together.
178+ * @return {Identify } Returns the same Identify object, allowing you to chain multiple method calls together.
179179 * @example var identify = new amplitude.Identify().unset('user_type').unset('age');
180180 * amplitude.identify(identify); // send the Identify call
181181 */
@@ -226,7 +226,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Amplitude
226226< br class ="clear ">
227227
228228< footer >
229- Documentation generated by < a href ="https://github.com/jsdoc3/jsdoc "> JSDoc 3.4.0</ a > on Tue Apr 05 2016 13:49:39 GMT-0700 (PDT)
229+ Documentation generated by < a href ="https://github.com/jsdoc3/jsdoc "> JSDoc 3.4.0</ a > on Tue Apr 05 2016 14:28:54 GMT-0700 (PDT)
230230</ footer >
231231
232232< script > prettyPrint ( ) ; </ script >
0 commit comments