Show / Hide Table of Contents

Class Summary

Summary of the audit report.

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

Properties

CountOf

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

Name of the key or count of object.

DisplayOrder

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

Specifies the order in which the summary must be displayed.

Remarks

Required

GroupByFieldName

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

A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.

IsHidden

Declaration
[JsonProperty(PropertyName = "isHidden")]
public bool? IsHidden { get; set; }
Property Value
Type Description
bool?

Indicates if the summary is hidden. Values can either be 'true' or 'false'.

Name

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

Name of the report summary.

Remarks

Required

ScimFilter

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

Additional scim filters used to get the specific summary.

In this article
Back to top