Advertisement
vmeansdev

APIResponse

Apr 10th, 2018
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.22 KB | None | 0 0
  1. data class APIResponse<out T>(val result: String,
  2.                               val data: T? = null,
  3.                               @SerializedName("error_msg")
  4.                               val errorMessage: String? = null)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement