We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the SDK doesn't support for Abstract field inheritance. UserInfo is defined as follow: (written in Kotlin)
UserInfo
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
Student
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.
select()
firstName
lastName
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the SDK doesn't support for Abstract field inheritance.
UserInfo
is defined as follow: (written in Kotlin)and I have
Student
class which inherit fromUserInfo
as followbut when I do
select()
thefirstName
andlastName
aren't mapped out.The text was updated successfully, but these errors were encountered: