JsonAdapter

trait JsonAdapter[T] extends JsonInput[T] with JsonOutput[T]

Defines JSON input and output conversions.

trait JsonOutput[T]
trait JsonInput[T]
class Object
trait Matchable
class Any

Value members

Inherited methods

def read(value: JsonValue): T

Converts JSON value.

Converts JSON value.

Inherited from:
JsonInput
def write(value: T): JsonValue

Converts to JSON value.

Converts to JSON value.

Inherited from:
JsonOutput