All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adjust.sdk.AdjustEventFailure Maven / Gradle / Ivy

There is a newer version: 4.38.5
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy