Show / Hide Table of Contents

Class CryptoAssessmentFindingCategorySummary

Aggregate finding counts for one crypto finding category.

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

Properties

Findings

Declaration
[Required(ErrorMessage = "Findings is required.")]
[JsonProperty(PropertyName = "findings")]
public int? Findings { get; set; }
Property Value
Type Description
int?

Findings with FAIL or EVALUATE status.

Remarks

Required

PassChecks

Declaration
[Required(ErrorMessage = "PassChecks is required.")]
[JsonProperty(PropertyName = "passChecks")]
public int? PassChecks { get; set; }
Property Value
Type Description
int?

Findings with PASS status.

Remarks

Required

TotalChecks

Declaration
[Required(ErrorMessage = "TotalChecks is required.")]
[JsonProperty(PropertyName = "totalChecks")]
public int? TotalChecks { get; set; }
Property Value
Type Description
int?

Total findings across all statuses in this category.

Remarks

Required

In this article
Back to top