MessageFieldsDto

@JsonSerializable
data class MessageFieldsDto(@Json(name = "DataType") val dataType: DataType, @Json(name = "BinaryListValue") val binaryListValues: List<String>? = null, @Json(name = "BinaryValue") val binaryValue: String? = null, @Json(name = "StringListValue") val stringListValues: List<String>? = null, @Json(name = "StringValue") val stringValue: String? = null)

Constructors

Link copied to clipboard
constructor(@Json(name = "DataType") dataType: DataType, @Json(name = "BinaryListValue") binaryListValues: List<String>? = null, @Json(name = "BinaryValue") binaryValue: String? = null, @Json(name = "StringListValue") stringListValues: List<String>? = null, @Json(name = "StringValue") stringValue: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val binaryValue: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val stringValue: String? = null