object JsonBinaryFormat

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsonBinaryFormat
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Base64(withoutPadding: Boolean = false, urlSafe: Boolean = false) extends JsonBinaryFormat with Product with Serializable

    Specifies that binary data should be represented as JSON string containing binary data encoded as Base64.

    Specifies that binary data should be represented as JSON string containing binary data encoded as Base64. When withoutPadding is true, padding characters will be omitted at the end. When urlSafe is true, an URL and filename safe alphabet will be used as defined in RFC4648 Section 5.

Value Members

  1. object ByteArray extends JsonBinaryFormat with Product with Serializable

    Specifies that binary data should be represented as JSON array of numeric, signed byte values.

  2. object HexString extends JsonBinaryFormat with Product with Serializable

    Specifies that binary data should be represented as JSON lowercase hex string.

    Specifies that binary data should be represented as JSON lowercase hex string. When parsing, uppercase hex digits are also accepted.