Show / Hide Table of Contents

Class ThreatListDescriptor

Describes an individual threat list. A list is defined by three parameters: the type of threat posed, the type of platform targeted by the threat, and the type of entries in the list.

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

Properties

ETag

The ETag of the item.

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

PlatformType

The platform type targeted by the list's entries.

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

ThreatEntryType

The entry types contained in the list.

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

ThreatType

The threat type posed by the list's entries.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top