Currently the SDK doesn't support for Abstract field inheritance. `UserInfo` is defined as follow: (written in Kotlin) ```kotlin abstract class UserInfo( @SerializedName("First Name") @NotBlank open var firstName: String? = null, @SerializedName("Last Name") @NotBlank open var lastName: String? = null ) {} ``` and I have `Student` class which inherit from `UserInfo` as follow ```kotlin class Student constructor() : UserInfo() { @SerializedName("Student CMKL ID") var studentId: String? = null // ... more fields ) ``` but when I do `select()` the `firstName` and `lastName` aren't mapped out.
Currently the SDK doesn't support for Abstract field inheritance.
UserInfois defined as follow: (written in Kotlin)and I have
Studentclass which inherit fromUserInfoas followbut when I do
select()thefirstNameandlastNamearen't mapped out.