Show / Hide Table of Contents

Class UpdateFindingDetails

Details to update a finding in a security assessment.

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

Properties

Justification

Declaration
[JsonProperty(PropertyName = "justification")]
public string Justification { get; set; }
Property Value
Type Description
string

User provided reason for accepting or modifying this finding if they choose to do so.

Severity

Declaration
[JsonProperty(PropertyName = "severity")]
[JsonConverter(typeof(StringEnumConverter))]
public Finding.SeverityEnum? Severity { get; set; }
Property Value
Type Description
Finding.SeverityEnum?

The severity of the finding as defined or changed by the user.

TimeValidUntil

Declaration
[JsonProperty(PropertyName = "timeValidUntil")]
public DateTime? TimeValidUntil { get; set; }
Property Value
Type Description
DateTime?

The time until which the change in severity (deferred / modified) got the given finding is valid.

In this article
Back to top