star_zero
02/12/2021, 9:29 AMdata class Sample(
@Json(name = "full_name") val fullName: String
)
// in KSP
KSClassDeclaration.getAllProperties().forEach {
it.annotations // => empty list
}
star_zero
02/12/2021, 12:43 PMgetDeclaredProperties
instead of getAllProperties
.
KSClassDeclaration.getDeclaredProperties().forEach {
it.annotations
}
Ting-Yuan Huang
02/12/2021, 6:53 PMstar_zero
02/13/2021, 12:32 AM