I’m writing a little tool where a user can pass in...
# announcements
r
I’m writing a little tool where a user can pass in parameters on the command line that will override the properties of the class. The tricky part here is the classes are implementations of an Interface, so I don’t know ahead of time what they could override. I’m looping over instance::class.memberProperties at the moment, which is working fine for grabbing the annotations that might be on the property, but i’m not sure of the cleanest approach for checking the type of the original value. any pointers?