Show / Hide Table of Contents

Class RuleCollection

Results of an rule listing. Rules describe an item of data with name and ruletype.

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

Properties

Count

Declaration
[JsonProperty(PropertyName = "count")]
public int? Count { get; set; }
Property Value
Type Description
int?

Total number of items returned.

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<RuleSummary> Items { get; set; }
Property Value
Type Description
List<RuleSummary>

Collection of rules.

Remarks

Required

In this article
Back to top