Expose pincode resolver errors in extraction
All checks were successful
build-and-deploy / build-deploy (push) Successful in 33s

This commit is contained in:
androidlover5842
2026-01-31 12:02:23 +05:30
parent 1b45a38c78
commit 901247a920
4 changed files with 8 additions and 4 deletions

View File

@@ -104,5 +104,6 @@ data class PincodeLookupResult(
val resolvedCityState: String?,
val rawResponse: String?,
val status: String?,
val source: String
val source: String,
val errorMessage: String? = null
)