say i have an object like: ```object a { object...
# announcements
b
say i have an object like:
Copy code
object a {
  object b {
    const val one = 1
  }
  object c {
    const val two = 2
  }
}
is there any way to get the values
1
and
2
reflectively from
KClass<a>