DisplayDataResponse

data class DisplayDataResponse(val boolValue: Boolean, val durationValue: String, val floatValue: Double, val int64Value: String, val javaClassValue: String, val key: String, val label: String, val namespace: String, val shortStrValue: String, val strValue: String, val timestampValue: String, val url: String)

Data provided with a pipeline or transform to provide descriptive info.

Constructors

Link copied to clipboard
fun DisplayDataResponse(boolValue: Boolean, durationValue: String, floatValue: Double, int64Value: String, javaClassValue: String, key: String, label: String, namespace: String, shortStrValue: String, strValue: String, timestampValue: String, url: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Contains value if the data is of a boolean type.

Link copied to clipboard

Contains value if the data is of duration type.

Link copied to clipboard

Contains value if the data is of float type.

Link copied to clipboard

Contains value if the data is of int64 type.

Link copied to clipboard

Contains value if the data is of java class type.

Link copied to clipboard
val key: String

The key identifying the display data. This is intended to be used as a label for the display data when viewed in a dax monitoring system.

Link copied to clipboard

An optional label to display in a dax UI for the element.

Link copied to clipboard

The namespace for the key. This is usually a class name or programming language namespace (i.e. python module) which defines the display data. This allows a dax monitoring system to specially handle the data and perform custom rendering.

Link copied to clipboard

A possible additional shorter value to display. For example a java_class_name_value of com.mypackage.MyDoFn will be stored with MyDoFn as the short_str_value and com.mypackage.MyDoFn as the java_class_name value. short_str_value can be displayed and java_class_name_value will be displayed as a tooltip.

Link copied to clipboard

Contains value if the data is of string type.

Link copied to clipboard

Contains value if the data is of timestamp type.

Link copied to clipboard
val url: String

An optional full URL.