Show / Hide Table of Contents

Class QueryResultRowTypeSummary

Summary of the datatype, unit and related metadata of an individual row element of a query result row that is returned.

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

Properties

DataType

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

Datatype of the query result row element.

DisplayName

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

Alias name if an alias is used for the query result row element or an assigned display name from the query language in some default cases.

Expression

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

Actual show expression in the user typed query that produced this column.

QueryResultRowTypeSummaries

Declaration
[JsonProperty(PropertyName = "queryResultRowTypeSummaries")]
public List<QueryResultRowTypeSummary> QueryResultRowTypeSummaries { get; set; }
Property Value
Type Description
List<QueryResultRowTypeSummary>

A query result row type summary object that represents a nested table structure.

Unit

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

Granular unit in which the query result row element's data is represented.

In this article
Back to top