JsonResponse

data class JsonResponse<T>(val message: String, val result: T? = null)

A response value provided by the external APIs.

Constructors

Link copied to clipboard
constructor(message: String, result: T? = null)

Properties

Link copied to clipboard

Human-readable message representing the result of the operation

Link copied to clipboard
val result: T? = null

Possible result value for processing