Skip to content

Commit

Permalink
Merge pull request #105 from bmschwa/handling_enums
Browse files Browse the repository at this point in the history
enums as well as properties
  • Loading branch information
dvankley authored Jul 7, 2024
2 parents ea36912 + 235f460 commit 5dc18ab
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ open class ApiClient(
registerModule(JavaTimeModule())
configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false)
configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)
configure(DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_AS_NULL, true)
}
protected val UNSAFE_HEADERS = listOf<String>()
}
Expand Down

0 comments on commit 5dc18ab

Please sign in to comment.