MappingInfo

data class MappingInfo(val target: String = "", val functionName: String = "", val code: String = "", val isExtension: Boolean = false)

Data class for storing mapping information.

Constructors

Link copied to clipboard
constructor(target: String = "", functionName: String = "", code: String = "", isExtension: Boolean = false)

Properties

Link copied to clipboard

Additional code or logic to apply.

Link copied to clipboard

The simple name of function to map the target property.

Link copied to clipboard
val isExtension: Boolean = false

Flag of extension function.

Link copied to clipboard

The target property name.