Class GoogleSecuritySafebrowsingV5RiceDeltaEncoded128Bit
Same as RiceDeltaEncoded32Bit except this encodes 128-bit numbers.
Implements
Inherited Members
Namespace: Google.Apis.Safebrowsing.v5.Data
Assembly: Google.Apis.Safebrowsing.v5.dll
Syntax
public class GoogleSecuritySafebrowsingV5RiceDeltaEncoded128Bit : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
EncodedData
The encoded deltas that are encoded using the Golomb-Rice coder.
Declaration
[JsonProperty("encodedData")]
public virtual string EncodedData { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
EntriesCount
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.
Declaration
[JsonProperty("entriesCount")]
public virtual int? EntriesCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
FirstValueHi
The upper 64 bits of the first entry in the encoded data (hashes). If the field is empty, the upper 64 bits are all zero.
Declaration
[JsonProperty("firstValueHi")]
public virtual ulong? FirstValueHi { get; set; }
Property Value
| Type | Description |
|---|---|
| ulong? |
FirstValueLo
The lower 64 bits of the first entry in the encoded data (hashes). If the field is empty, the lower 64 bits are all zero.
Declaration
[JsonProperty("firstValueLo")]
public virtual ulong? FirstValueLo { get; set; }
Property Value
| Type | Description |
|---|---|
| ulong? |
RiceParameter
The Golomb-Rice parameter. This parameter is guaranteed to be between 99 and 126, inclusive.
Declaration
[JsonProperty("riceParameter")]
public virtual int? RiceParameter { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |