Plain

oxygen.http.core.partial.PartialParamCodec.Plain
See thePlain companion trait
object Plain extends PlainLowPriority1

Attributes

Companion
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Plain.type

Members list

Type members

Classlikes

final case class ManyOptional[S[_], A](schema: PlainTextSchema[A])(using seqOps: SeqOps[S]) extends Plain[S[A]]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Plain[S[A]]
trait PartialParamCodec[S[A]]
class Object
trait Matchable
class Any
Show all
final case class ManyRequired[A](schema: PlainTextSchema[A]) extends Plain[NonEmptyList[A]]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Plain[NonEmptyList[A]]
trait PartialParamCodec[NonEmptyList[A]]
class Object
trait Matchable
class Any
Show all
final case class Optional[A](schema: PlainTextSchema[A]) extends Plain[Option[A]]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Plain[Option[A]]
trait PartialParamCodec[Option[A]]
class Object
trait Matchable
class Any
Show all
final case class Required[A](schema: PlainTextSchema[A]) extends Plain[A]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Plain[A]
class Object
trait Matchable
class Any
Show all

Givens

Givens

given manyNonEmpty[A](using schema: PlainTextSchema[A]): Plain[NonEmptyList[A]]
given optional[A](using schema: PlainTextSchema[A]): Plain[Option[A]]

Inherited givens

given many[S[_] : SeqOps, A](using evidence$1: SeqOps[S], schema: PlainTextSchema[A]): Plain[S[A]]

Attributes

Inherited from:
PlainLowPriority1
given required[A](using schema: PlainTextSchema[A]): Plain[A]

Attributes

Inherited from:
PlainLowPriority2