NetworkResponse

data class NetworkResponse(val isSuccessful: Boolean = false, val body: String? = null, val code: Int = -1, val message: String? = null, val error: VGSError? = null)

Constructors

Link copied to clipboard
constructor(isSuccessful: Boolean = false, body: String? = null, code: Int = -1, message: String? = null, error: VGSError? = null)

Properties

Link copied to clipboard
val body: String? = null
Link copied to clipboard
val code: Int
Link copied to clipboard
val error: VGSError? = null
Link copied to clipboard
val isSuccessful: Boolean = false
Link copied to clipboard
val message: String? = null

Functions

Link copied to clipboard