Show / Hide Table of Contents

Class DataVisibility

The visibility level of attribution data, including its Traffic Light Protocol (TLP) color.

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

Properties

Name

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

The name of the visibility level.

Remarks

Required

TlpName

Declaration
[Required(ErrorMessage = "TlpName is required.")]
[JsonProperty(PropertyName = "tlpName")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DataVisibility.TlpNameEnum? TlpName { get; set; }
Property Value
Type Description
DataVisibility.TlpNameEnum?

The Traffic Light Protocol (TLP) color of the visibility level.

Remarks

Required

In this article
Back to top