@@ -16,6 +16,7 @@ public class GoCardlessClient {
1616 private final HttpClient httpClient ;
1717 private final BalanceService balances ;
1818 private final BankAccountDetailService bankAccountDetails ;
19+ private final BankAccountHolderVerificationService bankAccountHolderVerifications ;
1920 private final BankAuthorisationService bankAuthorisations ;
2021 private final BankDetailsLookupService bankDetailsLookups ;
2122 private final BillingRequestService billingRequests ;
@@ -43,6 +44,8 @@ public class GoCardlessClient {
4344 private final PayerAuthorisationService payerAuthorisations ;
4445 private final PayerThemeService payerThemes ;
4546 private final PaymentService payments ;
47+ private final PaymentAccountService paymentAccounts ;
48+ private final PaymentAccountTransactionService paymentAccountTransactions ;
4649 private final PayoutService payouts ;
4750 private final PayoutItemService payoutItems ;
4851 private final RedirectFlowService redirectFlows ;
@@ -177,6 +180,7 @@ private GoCardlessClient(HttpClient httpClient) {
177180 this .httpClient = httpClient ;
178181 this .balances = new BalanceService (httpClient );
179182 this .bankAccountDetails = new BankAccountDetailService (httpClient );
183+ this .bankAccountHolderVerifications = new BankAccountHolderVerificationService (httpClient );
180184 this .bankAuthorisations = new BankAuthorisationService (httpClient );
181185 this .bankDetailsLookups = new BankDetailsLookupService (httpClient );
182186 this .billingRequests = new BillingRequestService (httpClient );
@@ -204,6 +208,8 @@ private GoCardlessClient(HttpClient httpClient) {
204208 this .payerAuthorisations = new PayerAuthorisationService (httpClient );
205209 this .payerThemes = new PayerThemeService (httpClient );
206210 this .payments = new PaymentService (httpClient );
211+ this .paymentAccounts = new PaymentAccountService (httpClient );
212+ this .paymentAccountTransactions = new PaymentAccountTransactionService (httpClient );
207213 this .payouts = new PayoutService (httpClient );
208214 this .payoutItems = new PayoutItemService (httpClient );
209215 this .redirectFlows = new RedirectFlowService (httpClient );
@@ -231,6 +237,13 @@ public BankAccountDetailService bankAccountDetails() {
231237 return bankAccountDetails ;
232238 }
233239
240+ /**
241+ * A service class for working with bank account holder verification resources.
242+ */
243+ public BankAccountHolderVerificationService bankAccountHolderVerifications () {
244+ return bankAccountHolderVerifications ;
245+ }
246+
234247 /**
235248 * A service class for working with bank authorisation resources.
236249 */
@@ -420,6 +433,20 @@ public PaymentService payments() {
420433 return payments ;
421434 }
422435
436+ /**
437+ * A service class for working with payment account resources.
438+ */
439+ public PaymentAccountService paymentAccounts () {
440+ return paymentAccounts ;
441+ }
442+
443+ /**
444+ * A service class for working with payment account transaction resources.
445+ */
446+ public PaymentAccountTransactionService paymentAccountTransactions () {
447+ return paymentAccountTransactions ;
448+ }
449+
423450 /**
424451 * A service class for working with payout resources.
425452 */
0 commit comments