Skip to content

Commit bb05e5a

Browse files
authored
Merge pull request #144 from gocardless/template-changes
Changes from gocardless/gocardless-pro-java-template
2 parents c7fb4ab + 92edef3 commit bb05e5a

File tree

3 files changed

+4
-373
lines changed

3 files changed

+4
-373
lines changed

src/main/java/com/gocardless/resources/BillingRequestWithAction.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
* See [Billing Requests:
1515
* Overview](https://developer.gocardless.com/getting-started/billing-requests/overview/) for
1616
* how-to's, explanations and tutorials.
17-
* <p class="notice">
18-
* <strong>Important</strong>: All properties associated with `subscription_request` and
19-
* `instalment_schedule_request` are only supported for ACH and PAD schemes.
20-
* </p>
2117
*/
2218
public class BillingRequestWithAction {
2319
private BillingRequestWithAction() {

src/main/java/com/gocardless/resources/PayoutItem.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ private PayoutItem() {
2626

2727
private String amount;
2828
private Links links;
29-
private List<Taxis> taxes;
29+
private List<Tax> taxes;
3030
private Type type;
3131

3232
/**
@@ -55,7 +55,7 @@ public Links getLinks() {
5555
* _Note_: VAT applies to transaction and surcharge fees for merchants operating in the UK and
5656
* France.
5757
*/
58-
public List<Taxis> getTaxes() {
58+
public List<Tax> getTaxes() {
5959
return taxes;
6060
}
6161

@@ -137,8 +137,8 @@ public String getRefund() {
137137
}
138138
}
139139

140-
public static class Taxis {
141-
private Taxis() {
140+
public static class Tax {
141+
private Tax() {
142142
// blank to prevent instantiation
143143
}
144144

0 commit comments

Comments
 (0)