Skip to content

Commit f4763cb

Browse files
committed
feat(api): add verification_failed_reason (#103)
1 parent cc5f1bc commit f4763cb

10 files changed

Lines changed: 1620 additions & 1390 deletions

lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalBankAccountCreateResponse.kt

Lines changed: 322 additions & 278 deletions
Large diffs are not rendered by default.

lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalBankAccountListResponse.kt

Lines changed: 322 additions & 278 deletions
Large diffs are not rendered by default.

lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalBankAccountRetrieveResponse.kt

Lines changed: 322 additions & 278 deletions
Large diffs are not rendered by default.

lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalBankAccountUpdateResponse.kt

Lines changed: 322 additions & 278 deletions
Large diffs are not rendered by default.

lithic-java-core/src/main/kotlin/com/lithic/api/models/MicroDepositCreateResponse.kt

Lines changed: 321 additions & 278 deletions
Large diffs are not rendered by default.

lithic-java-core/src/test/kotlin/com/lithic/api/models/ExternalBankAccountCreateResponseTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class ExternalBankAccountCreateResponseTest {
4141
.doingBusinessAs("string")
4242
.name("string")
4343
.userDefinedId("string")
44+
.verificationFailedReason("string")
4445
.build()
4546
assertThat(externalBankAccountCreateResponse).isNotNull
4647
assertThat(externalBankAccountCreateResponse.token())
@@ -80,5 +81,6 @@ class ExternalBankAccountCreateResponseTest {
8081
assertThat(externalBankAccountCreateResponse.doingBusinessAs()).contains("string")
8182
assertThat(externalBankAccountCreateResponse.name()).contains("string")
8283
assertThat(externalBankAccountCreateResponse.userDefinedId()).contains("string")
84+
assertThat(externalBankAccountCreateResponse.verificationFailedReason()).contains("string")
8385
}
8486
}

lithic-java-core/src/test/kotlin/com/lithic/api/models/ExternalBankAccountListResponseTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class ExternalBankAccountListResponseTest {
4141
.doingBusinessAs("string")
4242
.name("string")
4343
.userDefinedId("string")
44+
.verificationFailedReason("string")
4445
.build()
4546
assertThat(externalBankAccountListResponse).isNotNull
4647
assertThat(externalBankAccountListResponse.token())
@@ -80,5 +81,6 @@ class ExternalBankAccountListResponseTest {
8081
assertThat(externalBankAccountListResponse.doingBusinessAs()).contains("string")
8182
assertThat(externalBankAccountListResponse.name()).contains("string")
8283
assertThat(externalBankAccountListResponse.userDefinedId()).contains("string")
84+
assertThat(externalBankAccountListResponse.verificationFailedReason()).contains("string")
8385
}
8486
}

lithic-java-core/src/test/kotlin/com/lithic/api/models/ExternalBankAccountRetrieveResponseTest.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class ExternalBankAccountRetrieveResponseTest {
4141
.doingBusinessAs("string")
4242
.name("string")
4343
.userDefinedId("string")
44+
.verificationFailedReason("string")
4445
.build()
4546
assertThat(externalBankAccountRetrieveResponse).isNotNull
4647
assertThat(externalBankAccountRetrieveResponse.token())
@@ -81,5 +82,7 @@ class ExternalBankAccountRetrieveResponseTest {
8182
assertThat(externalBankAccountRetrieveResponse.doingBusinessAs()).contains("string")
8283
assertThat(externalBankAccountRetrieveResponse.name()).contains("string")
8384
assertThat(externalBankAccountRetrieveResponse.userDefinedId()).contains("string")
85+
assertThat(externalBankAccountRetrieveResponse.verificationFailedReason())
86+
.contains("string")
8487
}
8588
}

lithic-java-core/src/test/kotlin/com/lithic/api/models/ExternalBankAccountUpdateResponseTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class ExternalBankAccountUpdateResponseTest {
4141
.doingBusinessAs("string")
4242
.name("string")
4343
.userDefinedId("string")
44+
.verificationFailedReason("string")
4445
.build()
4546
assertThat(externalBankAccountUpdateResponse).isNotNull
4647
assertThat(externalBankAccountUpdateResponse.token())
@@ -80,5 +81,6 @@ class ExternalBankAccountUpdateResponseTest {
8081
assertThat(externalBankAccountUpdateResponse.doingBusinessAs()).contains("string")
8182
assertThat(externalBankAccountUpdateResponse.name()).contains("string")
8283
assertThat(externalBankAccountUpdateResponse.userDefinedId()).contains("string")
84+
assertThat(externalBankAccountUpdateResponse.verificationFailedReason()).contains("string")
8385
}
8486
}

lithic-java-core/src/test/kotlin/com/lithic/api/models/MicroDepositCreateResponseTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class MicroDepositCreateResponseTest {
4141
.doingBusinessAs("string")
4242
.name("string")
4343
.userDefinedId("string")
44+
.verificationFailedReason("string")
4445
.build()
4546
assertThat(microDepositCreateResponse).isNotNull
4647
assertThat(microDepositCreateResponse.token())
@@ -80,5 +81,6 @@ class MicroDepositCreateResponseTest {
8081
assertThat(microDepositCreateResponse.doingBusinessAs()).contains("string")
8182
assertThat(microDepositCreateResponse.name()).contains("string")
8283
assertThat(microDepositCreateResponse.userDefinedId()).contains("string")
84+
assertThat(microDepositCreateResponse.verificationFailedReason()).contains("string")
8385
}
8486
}

0 commit comments

Comments
 (0)