Show / Hide Table of Contents

Class IndicatorRelationship

A relationship name and list of releated entities.

Inheritance
object
IndicatorRelationship
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 IndicatorRelationship

Properties

Attribution

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

The array of attribution data that support this relationship.

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 attribute.

Remarks

Required

RelatedEntity

Declaration
[Required(ErrorMessage = "RelatedEntity is required.")]
[JsonProperty(PropertyName = "relatedEntity")]
public EntityReference RelatedEntity { get; set; }
Property Value
Type Description
EntityReference
Remarks

Required

In this article
Back to top