Skip to content

Commit

Permalink
Merge pull request #18 from adjust/doc_response_info
Browse files Browse the repository at this point in the history
Updated response fields in doc
  • Loading branch information
nonelse committed Jul 16, 2014
2 parents 6dd9aa4 + b0cf607 commit 77f65aa
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,20 +223,22 @@ failed to track. Within the delegate method you have access to the
- `ActivityKind activityKind` indicates what kind of activity was tracked. It has
one of these values:

```
Session
Event
Revenue
```
```
ActivityKind.SESSION
ActivityKind.EVENT
ActivityKind.REVENUE
ActivityKind.REATTRIBUTION
```

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

```
session
event
revenue
```
```
session
event
revenue
reattribution
```

- `bool success` indicates whether or not the tracking attempt was
successful.
Expand All @@ -247,6 +249,14 @@ revenue
request failed or response could not be parsed.
- `string trackerName` the tracker name of the current install. Is `null` if
request failed or response could not be parsed.
- `string network` the network grouping level of the current install. Is `null` if
request failed, unavailable or response could not be parsed.
- `string campaign` the campaign grouping level of the current install. Is `null` if
request failed, unavailable or response could not be parsed.
- `string adgroup` the ad group grouping level of the current install. Is `null` if
request failed, unavailable or response could not be parsed.
- `string creative` the creative grouping level of the current install. Is `null` if
request failed, unavailable or response could not be parsed.

```cs
using com.adjust.sdk;
Expand Down

0 comments on commit 77f65aa

Please sign in to comment.