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

sttp.tapir.server.interceptor.RequestResult.scala Maven / Gradle / Ivy

There is a newer version: 1.11.9
Show newest version
package sttp.tapir.server.interceptor

import sttp.tapir.server.model.ServerResponse

/** The result of processing a request: either a response, or a list of endpoint decoding failures. */
sealed trait RequestResult[+B]
object RequestResult {
  case class Response[B](response: ServerResponse[B]) extends RequestResult[B]
  case class Failure(failures: List[DecodeFailureContext]) extends RequestResult[Nothing]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy