Show / Hide Table of Contents

Class CustomPropertyCollection

Results of a custom properties listing. A custom property is an user defined attribute tied to the first class object of data catalog

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

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<CustomPropertySummary> Items { get; set; }
Property Value
Type Description
List<CustomPropertySummary>

Collection of custom property summaries

Remarks

Required

In this article
Back to top