Class CryptoAssessmentFindingCategorySummary
Aggregate finding counts for one crypto finding category.
Inherited Members
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