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
if ((jsonObj.get("loan_guarantor") != null && !jsonObj.get("loan_guarantor").isJsonNull()) && !jsonObj.get("loan_guarantor").isJsonPrimitive()) {
428
484
thrownewIllegalArgumentException(String.format("Expected the field `loan_guarantor` to be a primitive type in the JSON string but got `%s`", jsonObj.get("loan_guarantor").toString()));
429
485
}
486
+
if ((jsonObj.get("loan_reference_number") != null && !jsonObj.get("loan_reference_number").isJsonNull()) && !jsonObj.get("loan_reference_number").isJsonPrimitive()) {
487
+
thrownewIllegalArgumentException(String.format("Expected the field `loan_reference_number` to be a primitive type in the JSON string but got `%s`", jsonObj.get("loan_reference_number").toString()));
488
+
}
430
489
if ((jsonObj.get("institution_number") != null && !jsonObj.get("institution_number").isJsonNull()) && !jsonObj.get("institution_number").isJsonPrimitive()) {
431
490
thrownewIllegalArgumentException(String.format("Expected the field `institution_number` to be a primitive type in the JSON string but got `%s`", jsonObj.get("institution_number").toString()));
if ((jsonObj.get("routing_number") != null && !jsonObj.get("routing_number").isJsonNull()) && !jsonObj.get("routing_number").isJsonPrimitive()) {
437
496
thrownewIllegalArgumentException(String.format("Expected the field `routing_number` to be a primitive type in the JSON string but got `%s`", jsonObj.get("routing_number").toString()));
438
497
}
498
+
if ((jsonObj.get("sequence_number") != null && !jsonObj.get("sequence_number").isJsonNull()) && !jsonObj.get("sequence_number").isJsonPrimitive()) {
499
+
thrownewIllegalArgumentException(String.format("Expected the field `sequence_number` to be a primitive type in the JSON string but got `%s`", jsonObj.get("sequence_number").toString()));
500
+
}
439
501
if ((jsonObj.get("transit_number") != null && !jsonObj.get("transit_number").isJsonNull()) && !jsonObj.get("transit_number").isJsonPrimitive()) {
440
502
thrownewIllegalArgumentException(String.format("Expected the field `transit_number` to be a primitive type in the JSON string but got `%s`", jsonObj.get("transit_number").toString()));
0 commit comments