Request

data class Request(val loadingMethod: List<String>, val url: String, val kind: RequestType, val priority: RequestPriority)

Deprecated

This data class is deprecated, and will be removed in next major release.

Replace with

RequestInfo

The request data class that included in EventData

Constructors

Link copied to clipboard
fun Request(loadingMethod: List<String>, url: String, kind: RequestType, priority: RequestPriority)

Properties

Link copied to clipboard
@SerializedName(value = "kind")
val kind: RequestType

"kind" property

Link copied to clipboard
@SerializedName(value = "loading-method")
val loadingMethod: List<String>

"loading-method" property

Link copied to clipboard
@SerializedName(value = "priority")
val priority: RequestPriority

"priority" property

Link copied to clipboard
@SerializedName(value = "url")
val url: String

"url" property