Running Kotlin, the following code used to work just fine on 0.2.0.
val table = airtable.base("BASE").table("TABLE", AirtableItem::class.java)
val existingItems = table.select()
On 0.3.0 it's throwing the following:
java.lang.IllegalArgumentException: cloud.AirtableOrderItem does not have a property corresponding to [type]
Apparently 0.3.0 expects all columns to exist on the bean (there is a column called 'type' in the table)? There has got to be a better way?