google_api_safe_browsing v0.4.0 GoogleApi.SafeBrowsing.V4.Model.RiceDeltaEncoding View Source

The Rice-Golomb encoded data. Used for sending compressed 4-byte hashes or compressed removal indices.

Attributes

  • encodedData (type: String.t, default: nil) - The encoded deltas that are encoded using the Golomb-Rice coder.
  • firstValue (type: String.t, default: nil) - The offset of the first entry in the encoded data, or, if only a single integer was encoded, that single integer's value. If the field is empty or missing, assume zero.
  • numEntries (type: integer(), default: nil) - The number of entries that are delta encoded in the encoded data. If only a single integer was encoded, this will be zero and the single value will be stored in first_value.
  • riceParameter (type: integer(), default: nil) - The Golomb-Rice parameter, which is a number between 2 and 28. This field is missing (that is, zero) if num_entries is zero.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Link to this type

t() View Source
t() :: %GoogleApi.SafeBrowsing.V4.Model.RiceDeltaEncoding{
  encodedData: String.t(),
  firstValue: String.t(),
  numEntries: integer(),
  riceParameter: integer()
}

Link to this section Functions

Link to this function

decode(value, options) View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.