object JsonBinaryFormat
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JsonBinaryFormat
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
-
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. WhenurlSafe
is true, an URL and filename safe alphabet will be used as defined in RFC4648 Section 5.
Value Members
-
object
ByteArray extends JsonBinaryFormat with Product with Serializable
Specifies that binary data should be represented as JSON array of numeric, signed byte values.
-
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.