Show / Hide Table of Contents

Class PropertyDefinition

Details of a single type property.

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

Properties

IsRequired

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

Whether instances of the type are required to set this property.

IsUpdatable

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

Indicates if this property value can be updated.

Name

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

Name of the property.

Type

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

The properties value type.

In this article
Back to top