File tree 1 file changed +51
-0
lines changed
src/main/java/com/bunq/sdk/model/generated/object
1 file changed +51
-0
lines changed Original file line number Diff line number Diff line change
1
+ package com .bunq .sdk .model .generated .object ;
2
+
3
+ import com .bunq .sdk .model .core .BunqModel ;
4
+ import com .bunq .sdk .model .core .MonetaryAccountReference ;
5
+ import com .bunq .sdk .model .generated .endpoint .Payment ;
6
+ import com .bunq .sdk .model .generated .endpoint .PaymentBatch ;
7
+ import com .google .gson .annotations .Expose ;
8
+ import com .google .gson .annotations .SerializedName ;
9
+ import java .math .BigDecimal ;
10
+ import java .util .ArrayList ;
11
+ import java .util .HashMap ;
12
+ import java .util .List ;
13
+ import java .util .Map ;
14
+
15
+ /**
16
+ */
17
+ public class DraftPaymentAnchorObject extends BunqModel {
18
+
19
+ /**
20
+ */
21
+ @ Expose
22
+ @ SerializedName ("Payment" )
23
+ private Payment payment ;
24
+
25
+ /**
26
+ */
27
+ @ Expose
28
+ @ SerializedName ("PaymentBatch" )
29
+ private PaymentBatch paymentBatch ;
30
+
31
+ /**
32
+ */
33
+ public Payment getPayment () {
34
+ return this .payment ;
35
+ }
36
+
37
+ public void setPayment (Payment payment ) {
38
+ this .payment = payment ;
39
+ }
40
+
41
+ /**
42
+ */
43
+ public PaymentBatch getPaymentBatch () {
44
+ return this .paymentBatch ;
45
+ }
46
+
47
+ public void setPaymentBatch (PaymentBatch paymentBatch ) {
48
+ this .paymentBatch = paymentBatch ;
49
+ }
50
+
51
+ }
You can’t perform that action at this time.
0 commit comments