File tree Expand file tree Collapse file tree 3 files changed +4
-373
lines changed
src/main/java/com/gocardless Expand file tree Collapse file tree 3 files changed +4
-373
lines changed Original file line number Diff line number Diff line change 14
14
* See [Billing Requests:
15
15
* Overview](https://developer.gocardless.com/getting-started/billing-requests/overview/) for
16
16
* 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>
21
17
*/
22
18
public class BillingRequestWithAction {
23
19
private BillingRequestWithAction () {
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ private PayoutItem() {
26
26
27
27
private String amount ;
28
28
private Links links ;
29
- private List <Taxis > taxes ;
29
+ private List <Tax > taxes ;
30
30
private Type type ;
31
31
32
32
/**
@@ -55,7 +55,7 @@ public Links getLinks() {
55
55
* _Note_: VAT applies to transaction and surcharge fees for merchants operating in the UK and
56
56
* France.
57
57
*/
58
- public List <Taxis > getTaxes () {
58
+ public List <Tax > getTaxes () {
59
59
return taxes ;
60
60
}
61
61
@@ -137,8 +137,8 @@ public String getRefund() {
137
137
}
138
138
}
139
139
140
- public static class Taxis {
141
- private Taxis () {
140
+ public static class Tax {
141
+ private Tax () {
142
142
// blank to prevent instantiation
143
143
}
144
144
You can’t perform that action at this time.
0 commit comments