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

main.com.wisetrack.sdk.WiseTrackEventFailure.kt Maven / Gradle / Ivy

There is a newer version: 1.5.3
Show newest version
package com.wisetrack.sdk

import org.json.JSONObject

/**
@author hamed (@hamed-hsb)
 * @since 06th October 2021
 */

class WiseTrackEventFailure {
    var willRetry = false
    var adid: String? = null
    var message: String? = null
    var timestamp: String? = null
    var eventToken: String? = null
    var callbackId: String? = null
    var jsonResponse: JSONObject? = null

    override fun toString(): String {
        return "WiseTrackEventFailure(willRetry=$willRetry, adid=$adid, message=$message, timestamp=$timestamp, eventToken=$eventToken, callbackId=$callbackId, jsonResponse=$jsonResponse)"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy