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

main.com.wisetrack.sdk.WiseTrackSessionFailure.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 WiseTrackSessionFailure{
    var willRetry = false
    var adid: String? = null
    var message: String? = null
    var timestamp: String? = null
    var jsonResponse: JSONObject? = null

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy