Show / Hide Table of Contents

Class ObjectMetadata

Metadata of object.

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

Properties

ObjectNameColumn

Declaration
[Required(ErrorMessage = "ObjectNameColumn is required.")]
[JsonProperty(PropertyName = "objectNameColumn")]
public string ObjectNameColumn { get; set; }
Property Value
Type Description
string

The field that stores the name of the object.

Remarks

Required

ObjectTypeColumn

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

The field that stores the type of the object.

ObjectTypeFixed

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

The field that stores the fixed type of the object.

SchemaOwnerColumn

Declaration
[Required(ErrorMessage = "SchemaOwnerColumn is required.")]
[JsonProperty(PropertyName = "schemaOwnerColumn")]
public string SchemaOwnerColumn { get; set; }
Property Value
Type Description
string

The field that stores the owner of the object.

Remarks

Required

In this article
Back to top