Show / Hide Table of Contents

Class EntityCollection

Results of a data entities listing. Data entities are representation of a dataset with a set of attributes.

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

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

Collection of data entities.

Remarks

Required

In this article
Back to top