Show / Hide Table of Contents

Class GoogleCloudWebriskV1RiceDeltaEncoding

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

Inheritance
object
GoogleCloudWebriskV1RiceDeltaEncoding
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.WebRisk.v1.Data
Assembly: Google.Apis.WebRisk.v1.dll
Syntax
public class GoogleCloudWebriskV1RiceDeltaEncoding : 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

EntryCount

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("entryCount")]
public virtual int? EntryCount { get; set; }
Property Value
Type Description
int?

FirstValue

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.

Declaration
[JsonProperty("firstValue")]
public virtual long? FirstValue { get; set; }
Property Value
Type Description
long?

RiceParameter

The Golomb-Rice parameter, which is a number between 2 and 28. This field is missing (that is, zero) if num_entries is zero.

Declaration
[JsonProperty("riceParameter")]
public virtual int? RiceParameter { get; set; }
Property Value
Type Description
int?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX