Document

smithy4s.Document$
See theDocument companion trait
object Document

Attributes

Companion:
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Type members

Classlikes

case class DArray(value: IndexedSeq[Document]) extends Document

Attributes

Graph
Supertypes
trait Document
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
case class DBoolean(value: Boolean) extends Document

Attributes

Graph
Supertypes
trait Document
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
case object DNull extends Document

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Document
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Self type
DNull.type
case class DNumber(value: BigDecimal) extends Document

Attributes

Graph
Supertypes
trait Document
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
case class DObject(value: Map[String, Document]) extends Document

Attributes

Graph
Supertypes
trait Document
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
case class DString(value: String) extends Document

Attributes

Graph
Supertypes
trait Document
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object Decoder

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Decoder.type
trait Decoder[A]

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
object Encoder

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Encoder.type
trait Encoder[A]

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def array(values: Document*): Document
def decode[A](document: Document)(implicit decoder: Decoder[A]): Either[PayloadError, A]
def encode[A](a: A)(implicit encoder: Encoder[A]): Document
def fromDouble(double: Double): Document
def fromInt(int: Int): Document
def fromLong(long: Long): Document
def obj(kv: (String, Document)*): Document