Show / Hide Table of Contents

Class CustomPropertyTypeUsage

Object which describes the indivial object stats for every custom property

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

Properties

Count

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

Number of objects associated with this type

IsEventEnabled

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

If an OCI Event will be emitted when the custom property is modified.

TypeId

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

Unique type key identifier

TypeName

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

Name of the type associated with

In this article
Back to top