Show / Hide Table of Contents

Class QueryDataObjectResultSetColumnMetadata

Metadata of a column in a data object query result set.

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

Properties

DataType

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

Type of the column in a data object query result.

DataTypeName

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

Type name of the column in a data object query result set.

Name

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

Name of the column in a data object query result set.

Remarks

Required

In this article
Back to top