io.appwrite.models.Log.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-for-kotlin Show documentation
Show all versions of sdk-for-kotlin Show documentation
Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Kotlin SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
package io.appwrite.models
import com.google.gson.annotations.SerializedName
import io.appwrite.extensions.jsonCast
/**
* Log
*/
data class Log(
/**
* Event name.
*/
@SerializedName("event")
val event: String,
/**
* User ID.
*/
@SerializedName("userId")
val userId: String,
/**
* User Email.
*/
@SerializedName("userEmail")
val userEmail: String,
/**
* User Name.
*/
@SerializedName("userName")
val userName: String,
/**
* API mode when event triggered.
*/
@SerializedName("mode")
val mode: String,
/**
* IP session in use when the session was created.
*/
@SerializedName("ip")
val ip: String,
/**
* Log creation date in ISO 8601 format.
*/
@SerializedName("time")
val time: String,
/**
* Operating system code name. View list of [available options](https://github.com/appwrite/appwrite/blob/master/docs/lists/os.json).
*/
@SerializedName("osCode")
val osCode: String,
/**
* Operating system name.
*/
@SerializedName("osName")
val osName: String,
/**
* Operating system version.
*/
@SerializedName("osVersion")
val osVersion: String,
/**
* Client type.
*/
@SerializedName("clientType")
val clientType: String,
/**
* Client code name. View list of [available options](https://github.com/appwrite/appwrite/blob/master/docs/lists/clients.json).
*/
@SerializedName("clientCode")
val clientCode: String,
/**
* Client name.
*/
@SerializedName("clientName")
val clientName: String,
/**
* Client version.
*/
@SerializedName("clientVersion")
val clientVersion: String,
/**
* Client engine name.
*/
@SerializedName("clientEngine")
val clientEngine: String,
/**
* Client engine name.
*/
@SerializedName("clientEngineVersion")
val clientEngineVersion: String,
/**
* Device name.
*/
@SerializedName("deviceName")
val deviceName: String,
/**
* Device brand name.
*/
@SerializedName("deviceBrand")
val deviceBrand: String,
/**
* Device model name.
*/
@SerializedName("deviceModel")
val deviceModel: String,
/**
* Country two-character ISO 3166-1 alpha code.
*/
@SerializedName("countryCode")
val countryCode: String,
/**
* Country name.
*/
@SerializedName("countryName")
val countryName: String,
) {
fun toMap(): Map = mapOf(
"event" to event as Any,
"userId" to userId as Any,
"userEmail" to userEmail as Any,
"userName" to userName as Any,
"mode" to mode as Any,
"ip" to ip as Any,
"time" to time as Any,
"osCode" to osCode as Any,
"osName" to osName as Any,
"osVersion" to osVersion as Any,
"clientType" to clientType as Any,
"clientCode" to clientCode as Any,
"clientName" to clientName as Any,
"clientVersion" to clientVersion as Any,
"clientEngine" to clientEngine as Any,
"clientEngineVersion" to clientEngineVersion as Any,
"deviceName" to deviceName as Any,
"deviceBrand" to deviceBrand as Any,
"deviceModel" to deviceModel as Any,
"countryCode" to countryCode as Any,
"countryName" to countryName as Any,
)
companion object {
@Suppress("UNCHECKED_CAST")
fun from(
map: Map,
) = Log(
event = map["event"] as String,
userId = map["userId"] as String,
userEmail = map["userEmail"] as String,
userName = map["userName"] as String,
mode = map["mode"] as String,
ip = map["ip"] as String,
time = map["time"] as String,
osCode = map["osCode"] as String,
osName = map["osName"] as String,
osVersion = map["osVersion"] as String,
clientType = map["clientType"] as String,
clientCode = map["clientCode"] as String,
clientName = map["clientName"] as String,
clientVersion = map["clientVersion"] as String,
clientEngine = map["clientEngine"] as String,
clientEngineVersion = map["clientEngineVersion"] as String,
deviceName = map["deviceName"] as String,
deviceBrand = map["deviceBrand"] as String,
deviceModel = map["deviceModel"] as String,
countryCode = map["countryCode"] as String,
countryName = map["countryName"] as String,
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy