Show / Hide Table of Contents

Class ListUpdateResponse

An update to an individual list.

Inheritance
System.Object
ListUpdateResponse
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Safebrowsing.v4.Data
Assembly: Google.Apis.Safebrowsing.v4.dll
Syntax
public class ListUpdateResponse : IDirectResponseSchema

Properties

Additions

A set of entries to add to a local threat type's list. Repeated to allow for a combination of compressed and raw data to be sent in a single response.

Declaration
[JsonProperty("additions")]
public virtual IList<ThreatEntrySet> Additions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ThreatEntrySet>

Checksum

The expected SHA256 hash of the client state; that is, of the sorted list of all hashes present in the database after applying the provided update. If the client state doesn't match the expected state, the client must disregard this update and retry later.

Declaration
[JsonProperty("checksum")]
public virtual Checksum Checksum { get; set; }
Property Value
Type Description
Checksum

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

NewClientState

The new client state, in encrypted format. Opaque to clients.

Declaration
[JsonProperty("newClientState")]
public virtual string NewClientState { get; set; }
Property Value
Type Description
System.String

PlatformType

The platform type for which data is returned.

Declaration
[JsonProperty("platformType")]
public virtual string PlatformType { get; set; }
Property Value
Type Description
System.String

Removals

A set of entries to remove from a local threat type's list. In practice, this field is empty or contains exactly one ThreatEntrySet.

Declaration
[JsonProperty("removals")]
public virtual IList<ThreatEntrySet> Removals { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ThreatEntrySet>

ResponseType

The type of response. This may indicate that an action is required by the client when the response is received.

Declaration
[JsonProperty("responseType")]
public virtual string ResponseType { get; set; }
Property Value
Type Description
System.String

ThreatEntryType

The format of the threats.

Declaration
[JsonProperty("threatEntryType")]
public virtual string ThreatEntryType { get; set; }
Property Value
Type Description
System.String

ThreatType

The threat type for which data is returned.

Declaration
[JsonProperty("threatType")]
public virtual string ThreatType { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top