You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently using the following to define required properties from Kotlin data classes:
data classCarView(
@field:Schema(required = true) vallabel:String,
valdescription:String?,
)
It should be great if we can avoid all this boilerplate by expressing the requirement with Kotlin Null Safety. So in previous code we do not need to annotate every field.
I think it could be expressed in the function findSchema
The text was updated successfully, but these errors were encountered:
I am currently using the following to define required properties from Kotlin data classes:
It should be great if we can avoid all this boilerplate by expressing the requirement with Kotlin Null Safety. So in previous code we do not need to annotate every field.
I think it could be expressed in the function findSchema
The text was updated successfully, but these errors were encountered: