Lob v1.0.1 Lob.DecodedPacket View Source

A struct representing a decoded LOB packet

The following fields are available:

  • head_length: the length of the encoded HEAD
  • head: HEAD contents
  • json: the decoded HEAD object, if appropriate
  • body_length: the length of the encoded BODY
  • body: BODY contents
  • cloaked: the number of cloaking rounds unwrapped

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Lob.DecodedPacket{
  body: term(),
  body_length: term(),
  cloaked: term(),
  head: term(),
  head_length: term(),
  json: term()
}