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

sttp.client3.json.package.scala Maven / Gradle / Ivy

There is a newer version: 3.10.0
Show newest version
package sttp.client3

package object json {
  implicit class RichResponseAs[T, R](ra: ResponseAs[T, R]) {
    def showAsJson: ResponseAs[T, R] = ra.showAs("either(as string, as json)")
    def showAsJsonAlways: ResponseAs[T, R] = ra.showAs("as json")
    def showAsJsonEither: ResponseAs[T, R] = ra.showAs("either(as json, as json)")
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy