Skip to content

Commit

Permalink
Merge pull request #604 from adjust/docs-update
Browse files Browse the repository at this point in the history
Docs update
  • Loading branch information
uerceg authored Apr 5, 2022
2 parents 5c01bc6 + d555442 commit f0de0b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/english/sdk-to-sdk/helium-chartboost.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If you want to track your ad revenue with the Helium SDK, you can use our SDK-to
NSNumber *ad_revenue = [json objectForKey:@"ad_revenue"];
NSString *currency_type = [json objectForKey:@"currency_type"];
ADJAdRevenue *adjustAdRevenue = [[ADJAdRevenue alloc] initWithSource:ADJAdRevenueSourceHeliumChartboost];
[adjustAdRevenue setRevenue:ad_revenue currency:currency_type];
[adjustAdRevenue setRevenue:[ad_revenue doubleValue] currency:currency_type];
// optional fields
NSString *network_name = [json objectForKey:@"network_name"]; // Helium demand network name
NSString *placement_name = [json objectForKey:@"placement_name"]; // Helium placement name
Expand Down

0 comments on commit f0de0b0

Please sign in to comment.