Is there a way to ask Kotlin to trust you that a property will be there at runtime, even if it doesn't see it at compile, because it doesn't have sufficient type information to know that?
I have a generic class that's being code-gen'd, and basically want to say "if this property exists, set it to this value." I'm guessing I can do this via property access using Kotlin's reflection, but not exactly sure where to start looking in the docs.