All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wavesplatform.utils.Paged.scala Maven / Gradle / Ivy

The newest version!
package com.wavesplatform.utils

import play.api.libs.json._

final case class Paged[C, R](hasNext: Boolean, lastItem: Option[C], items: R)

object Paged {
  implicit def pagedWrites[C: Writes, R: Writes]: Writes[Paged[C, R]] = Json.writes[Paged[C, R]]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy