Show / Hide Table of Contents

Class DataObjectColumnMetadata

Metadata of a column in a data object resultset.

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

Properties

Category

Declaration
[JsonProperty(PropertyName = "category")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DataObjectColumnMetadata.CategoryEnum? Category { get; set; }
Property Value
Type Description
DataObjectColumnMetadata.CategoryEnum?

Category of the column.

DataType

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

Type of a data object column.

DataTypeName

Declaration
[JsonProperty(PropertyName = "dataTypeName")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DataObjectColumnMetadata.DataTypeNameEnum? DataTypeName { get; set; }
Property Value
Type Description
DataObjectColumnMetadata.DataTypeNameEnum?

Type name of a data object column.

Description

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

Description of the column.

DisplayName

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

Display name of the column.

GroupName

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

Group name of the column.

Name

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

Name of the column.

Remarks

Required

UnitDetails

Declaration
[JsonProperty(PropertyName = "unitDetails")]
public DataObjectColumnUnit UnitDetails { get; set; }
Property Value
Type Description
DataObjectColumnUnit
In this article
Back to top