com.adjust.sdk.AdjustEventFailure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adjust-android-trademob Show documentation
Show all versions of adjust-android-trademob Show documentation
The Trademob plugin for Adjust SDK for Android
package com.adjust.sdk;
import org.json.JSONObject;
import java.util.Locale;
/**
* Created by pfms on 04/01/16.
*/
public class AdjustEventFailure {
public String message;
public String timestamp;
public String adid;
public String eventToken;
public boolean willRetry;
public JSONObject jsonResponse;
@Override
public String toString() {
return String.format(Locale.US, "Event Failure msg:%s time:%s adid:%s event:%s retry:%b json:%s",
message, timestamp, adid, eventToken, willRetry, jsonResponse);
}
}