Show / Hide Table of Contents

Class ThreatInfo

The information regarding one or more threats that a client submits when checking for matches in threat lists.

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

Properties

ETag

The ETag of the item.

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

PlatformTypes

The platform types to be checked.

Declaration
[JsonProperty("platformTypes")]
public virtual IList<string> PlatformTypes { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ThreatEntries

The threat entries to be checked.

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

ThreatEntryTypes

The entry types to be checked.

Declaration
[JsonProperty("threatEntryTypes")]
public virtual IList<string> ThreatEntryTypes { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ThreatTypes

The threat types to be checked.

Declaration
[JsonProperty("threatTypes")]
public virtual IList<string> ThreatTypes { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top