EndpointIO

object EndpointIO
Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

sealed trait Atom[I] extends Basic[I] with Atom[I] with Atom[I]
sealed trait Basic[I] extends Single[I] with Basic[I] with Basic[I]
case class Body[R, T](bodyType: RawBodyType[R], codec: Codec[R, T, CodecFormat], info: Info[T]) extends Atom[T]
case class Empty[T](codec: Codec[Unit, T, TextPlain], info: Info[T]) extends Atom[T]
case class Example[+T](value: T, name: Option[String], summary: Option[String], description: Option[String])
Companion:
object
object Example
Companion:
class
case class FixedHeader[T](h: Header, codec: Codec[Unit, T, TextPlain], info: Info[T]) extends Atom[T]
case class Header[T](name: String, codec: Codec[List[String], T, TextPlain], info: Info[T]) extends Atom[T]
case class Headers[T](codec: Codec[List[Header], T, TextPlain], info: Info[T]) extends Atom[T]
case class Info[T](description: Option[String], examples: List[Example[T]], deprecated: Boolean, attributes: AttributeMap)
Companion:
object
object Info
Companion:
class
case class MappedPair[T, U, TU, V](io: Pair[T, U, TU], mapping: Mapping[TU, V]) extends Single[V]
case class OneOfBody[O, T](variants: List[OneOfBodyVariant[O]], mapping: Mapping[O, T]) extends Basic[T]
case class OneOfBodyVariant[O](range: ContentTypeRange, body: Either[Body[_, O], StreamBodyWrapper[_, O]])
case class Pair[T, U, TU](left: EndpointIO[T], right: EndpointIO[U], combine: CombineParams, split: SplitParams) extends EndpointIO[TU] with Pair[TU]
sealed trait Single[I] extends EndpointIO[I] with Single[I] with Single[I]
case class StreamBodyWrapper[BS, T](wrapped: StreamBodyIO[BS, T, _]) extends Atom[T]

Annotations which are used by EndpointInput.derived and EndpointOutput.derived to specify how a case class maps to an endpoint input/output.

Annotations which are used by EndpointInput.derived and EndpointOutput.derived to specify how a case class maps to an endpoint input/output.

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror