AutoMapperInfo

data class AutoMapperInfo(val targetPackage: String, val targetName: String, val defaults: Set<DefaultInfo> = emptySet(), val additionalImports: Set<String> = emptySet(), val excludes: Set<String> = emptySet())

Data class for storing information from 'AutoMapper' annotation.

Constructors

Link copied to clipboard
constructor(targetPackage: String, targetName: String, defaults: Set<DefaultInfo> = emptySet(), additionalImports: Set<String> = emptySet(), excludes: Set<String> = emptySet())

Properties

Link copied to clipboard

The additional imports that added to generated file

Link copied to clipboard

The information about defaults

Link copied to clipboard

The properties that should be excluded from mapping

Link copied to clipboard

The name of target class

Link copied to clipboard

The package for target class