Show / Hide Table of Contents

Class FindFullHashesResponse

Inheritance
System.Object
FindFullHashesResponse
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 FindFullHashesResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Matches

The full hashes that matched the requested prefixes.

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

MinimumWaitDuration

The minimum duration the client must wait before issuing any find hashes request. If this field is not set, clients can issue a request as soon as they want.

Declaration
[JsonProperty("minimumWaitDuration")]
public virtual object MinimumWaitDuration { get; set; }
Property Value
Type Description
System.Object

NegativeCacheDuration

For requested entities that did not match the threat list, how long to cache the response.

Declaration
[JsonProperty("negativeCacheDuration")]
public virtual object NegativeCacheDuration { get; set; }
Property Value
Type Description
System.Object

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top