Skip to content

Instantly share code, notes, and snippets.

@luks91
Created October 16, 2017 00:28
Show Gist options
  • Save luks91/1bdfd9c1b5261b19ef94a66318c4f0d8 to your computer and use it in GitHub Desktop.
Save luks91/1bdfd9c1b5261b19ef94a66318c4f0d8 to your computer and use it in GitHub Desktop.
data class PagedResponse<out T>(@Json(name = "isLastPage") val isLastPage: Boolean,
@Json(name = "values") val values: List<T>,
@Json(name = "nextPageStart") val nextPageStart: Int)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment