gsonpath.compiler.ExtensionFieldMetadata.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gsonpath-compiler-base Show documentation
Show all versions of gsonpath-compiler-base Show documentation
An annotation processor which generates Type Adapters for the Google Gson library
package gsonpath.compiler
import gsonpath.model.FieldInfo
/**
* Metadata about the field being read by the parent processor
*/
data class ExtensionFieldMetadata(
val fieldInfo: FieldInfo,
val variableName: String,
val jsonPath: String,
val isRequired: Boolean)