Show / Hide Table of Contents

Class ThreatType

A threat type along with attribution data that associates it to a threat indicator.

Inheritance
object
ThreatType
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ThreatintelligenceService.Models
Assembly: OCI.DotNetSDK.Threatintelligence.dll
Syntax
public class ThreatType

Properties

Attribution

Declaration
[Required(ErrorMessage = "Attribution is required.")]
[JsonProperty(PropertyName = "attribution")]
public List<DataAttribution> Attribution { get; set; }
Property Value
Type Description
List<DataAttribution>

The list of supporting attribution information.

Remarks

Required

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The OCID of the threat type.

Remarks

Required

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The name of the threat type.

Remarks

Required

In this article
Back to top