Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/main/java/com/gocardless/GoCardlessClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public class GoCardlessClient {
private final BillingRequestService billingRequests;
private final BillingRequestFlowService billingRequestFlows;
private final BillingRequestTemplateService billingRequestTemplates;
private final BillingRequestWithActionService billingRequestWithActions;
private final BlockService blocks;
private final CreditorService creditors;
private final CreditorBankAccountService creditorBankAccounts;
Expand Down Expand Up @@ -181,6 +182,7 @@ private GoCardlessClient(HttpClient httpClient) {
this.billingRequests = new BillingRequestService(httpClient);
this.billingRequestFlows = new BillingRequestFlowService(httpClient);
this.billingRequestTemplates = new BillingRequestTemplateService(httpClient);
this.billingRequestWithActions = new BillingRequestWithActionService(httpClient);
this.blocks = new BlockService(httpClient);
this.creditors = new CreditorService(httpClient);
this.creditorBankAccounts = new CreditorBankAccountService(httpClient);
Expand Down Expand Up @@ -264,6 +266,13 @@ public BillingRequestTemplateService billingRequestTemplates() {
return billingRequestTemplates;
}

/**
* A service class for working with billing request with action resources.
*/
public BillingRequestWithActionService billingRequestWithActions() {
return billingRequestWithActions;
}

/**
* A service class for working with block resources.
*/
Expand Down
Loading