ExpressionV2Response

data class ExpressionV2Response(val operands: List<ExpressionV2Response>? = null, val operators: List<String>? = null, val type: String? = null, val value: String? = null)

Nested representation of a complex expression.

Constructors

Link copied to clipboard
constructor(operands: List<ExpressionV2Response>? = null, operators: List<String>? = null, type: String? = null, value: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

List of nested expressions.

Link copied to clipboard
val operators: List<String>? = null

Expression operator value Type: list of strings.

Link copied to clipboard
val type: String? = null

Type of expressions supported by the system. Type: string.

Link copied to clipboard
val value: String? = null

Value for Constant/Field Type: string.