Skip to content

Commit 77f65aa

Browse files
committed
Merge pull request #18 from adjust/doc_response_info
Updated response fields in doc
2 parents 6dd9aa4 + b0cf607 commit 77f65aa

File tree

1 file changed

+20
-10
lines changed

1 file changed

+20
-10
lines changed

README.md

+20-10
Original file line numberDiff line numberDiff line change
@@ -223,20 +223,22 @@ failed to track. Within the delegate method you have access to the
223223
- `ActivityKind activityKind` indicates what kind of activity was tracked. It has
224224
one of these values:
225225

226-
```
227-
Session
228-
Event
229-
Revenue
230-
```
226+
```
227+
ActivityKind.SESSION
228+
ActivityKind.EVENT
229+
ActivityKind.REVENUE
230+
ActivityKind.REATTRIBUTION
231+
```
231232

232233
- `string activityKindString` human readable version of the activity kind.
233234
Possible values:
234235

235-
```
236-
session
237-
event
238-
revenue
239-
```
236+
```
237+
session
238+
event
239+
revenue
240+
reattribution
241+
```
240242

241243
- `bool success` indicates whether or not the tracking attempt was
242244
successful.
@@ -247,6 +249,14 @@ revenue
247249
request failed or response could not be parsed.
248250
- `string trackerName` the tracker name of the current install. Is `null` if
249251
request failed or response could not be parsed.
252+
- `string network` the network grouping level of the current install. Is `null` if
253+
request failed, unavailable or response could not be parsed.
254+
- `string campaign` the campaign grouping level of the current install. Is `null` if
255+
request failed, unavailable or response could not be parsed.
256+
- `string adgroup` the ad group grouping level of the current install. Is `null` if
257+
request failed, unavailable or response could not be parsed.
258+
- `string creative` the creative grouping level of the current install. Is `null` if
259+
request failed, unavailable or response could not be parsed.
250260

251261
```cs
252262
using com.adjust.sdk;

0 commit comments

Comments
 (0)