JsonMapperDestinationFieldResponse

data class JsonMapperDestinationFieldResponse(val destination: String? = null, val fieldName: String? = null)

JsonArrayMapper destination field used to describe the field to which the parsed output will be written.

Constructors

Link copied to clipboard
constructor(destination: String? = null, fieldName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val destination: String? = null

Define the destination's element. The element is the body or the attributes of the message, to which the json array mapper will write the output map.

Link copied to clipboard
val fieldName: String? = null

Define a destination field name under the given element. Leaving this empty, means the root of the element. In case element=attributes and fieldName is empty, the object's attributes themselves will contain the key value output pairs.