2
2
* Accounting API
3
3
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
*
5
- * The version of the OpenAPI document: 2.2.0
5
+ * The version of the OpenAPI document: 2.2.4
6
6
7
7
*
8
8
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
19
19
import com .fasterxml .jackson .annotation .JsonProperty ;
20
20
import com .fasterxml .jackson .annotation .JsonCreator ;
21
21
import com .fasterxml .jackson .annotation .JsonValue ;
22
+ import com .xero .models .accounting .CreditNote ;
22
23
import com .xero .models .accounting .Invoice ;
24
+ import com .xero .models .accounting .Overpayment ;
25
+ import com .xero .models .accounting .Prepayment ;
26
+ import com .xero .models .accounting .ValidationError ;
23
27
import io .swagger .annotations .ApiModel ;
24
28
import io .swagger .annotations .ApiModelProperty ;
29
+ import java .util .ArrayList ;
30
+ import java .util .List ;
25
31
import java .io .IOException ;
26
32
27
33
import org .threeten .bp .OffsetDateTime ;
@@ -42,11 +48,26 @@ public class Allocation {
42
48
@ JsonProperty ("Invoice" )
43
49
private Invoice invoice ;
44
50
51
+ @ JsonProperty ("Overpayment" )
52
+ private Overpayment overpayment ;
53
+
54
+ @ JsonProperty ("Prepayment" )
55
+ private Prepayment prepayment ;
56
+
57
+ @ JsonProperty ("CreditNote" )
58
+ private CreditNote creditNote ;
59
+
45
60
@ JsonProperty ("Amount" )
46
61
private Double amount ;
47
62
48
63
@ JsonProperty ("Date" )
49
64
private String date ;
65
+
66
+ @ JsonProperty ("StatusAttributeString" )
67
+ private String statusAttributeString ;
68
+
69
+ @ JsonProperty ("ValidationErrors" )
70
+ private List <ValidationError > validationErrors = new ArrayList <ValidationError >();
50
71
public Allocation invoice (Invoice invoice ) {
51
72
this .invoice = invoice ;
52
73
return this ;
@@ -65,6 +86,60 @@ public void setInvoice(Invoice invoice) {
65
86
this .invoice = invoice ;
66
87
}
67
88
89
+ public Allocation overpayment (Overpayment overpayment ) {
90
+ this .overpayment = overpayment ;
91
+ return this ;
92
+ }
93
+
94
+ /**
95
+ * Get overpayment
96
+ * @return overpayment
97
+ **/
98
+ @ ApiModelProperty (value = "" )
99
+ public Overpayment getOverpayment () {
100
+ return overpayment ;
101
+ }
102
+
103
+ public void setOverpayment (Overpayment overpayment ) {
104
+ this .overpayment = overpayment ;
105
+ }
106
+
107
+ public Allocation prepayment (Prepayment prepayment ) {
108
+ this .prepayment = prepayment ;
109
+ return this ;
110
+ }
111
+
112
+ /**
113
+ * Get prepayment
114
+ * @return prepayment
115
+ **/
116
+ @ ApiModelProperty (value = "" )
117
+ public Prepayment getPrepayment () {
118
+ return prepayment ;
119
+ }
120
+
121
+ public void setPrepayment (Prepayment prepayment ) {
122
+ this .prepayment = prepayment ;
123
+ }
124
+
125
+ public Allocation creditNote (CreditNote creditNote ) {
126
+ this .creditNote = creditNote ;
127
+ return this ;
128
+ }
129
+
130
+ /**
131
+ * Get creditNote
132
+ * @return creditNote
133
+ **/
134
+ @ ApiModelProperty (value = "" )
135
+ public CreditNote getCreditNote () {
136
+ return creditNote ;
137
+ }
138
+
139
+ public void setCreditNote (CreditNote creditNote ) {
140
+ this .creditNote = creditNote ;
141
+ }
142
+
68
143
public Allocation amount (Double amount ) {
69
144
this .amount = amount ;
70
145
return this ;
@@ -119,6 +194,50 @@ public void setDate(LocalDate date) {
119
194
this .date = "/Date(" + Long .toString (timeInMillis ) + "+0000)/" ;
120
195
}
121
196
197
+ public Allocation statusAttributeString (String statusAttributeString ) {
198
+ this .statusAttributeString = statusAttributeString ;
199
+ return this ;
200
+ }
201
+
202
+ /**
203
+ * A string to indicate if a invoice status
204
+ * @return statusAttributeString
205
+ **/
206
+ @ ApiModelProperty (value = "A string to indicate if a invoice status" )
207
+ public String getStatusAttributeString () {
208
+ return statusAttributeString ;
209
+ }
210
+
211
+ public void setStatusAttributeString (String statusAttributeString ) {
212
+ this .statusAttributeString = statusAttributeString ;
213
+ }
214
+
215
+ public Allocation validationErrors (List <ValidationError > validationErrors ) {
216
+ this .validationErrors = validationErrors ;
217
+ return this ;
218
+ }
219
+
220
+ public Allocation addValidationErrorsItem (ValidationError validationErrorsItem ) {
221
+ if (this .validationErrors == null ) {
222
+ this .validationErrors = new ArrayList <ValidationError >();
223
+ }
224
+ this .validationErrors .add (validationErrorsItem );
225
+ return this ;
226
+ }
227
+
228
+ /**
229
+ * Displays array of validation error messages from the API
230
+ * @return validationErrors
231
+ **/
232
+ @ ApiModelProperty (value = "Displays array of validation error messages from the API" )
233
+ public List <ValidationError > getValidationErrors () {
234
+ return validationErrors ;
235
+ }
236
+
237
+ public void setValidationErrors (List <ValidationError > validationErrors ) {
238
+ this .validationErrors = validationErrors ;
239
+ }
240
+
122
241
123
242
@ Override
124
243
public boolean equals (java .lang .Object o ) {
@@ -130,13 +249,18 @@ public boolean equals(java.lang.Object o) {
130
249
}
131
250
Allocation allocation = (Allocation ) o ;
132
251
return Objects .equals (this .invoice , allocation .invoice ) &&
252
+ Objects .equals (this .overpayment , allocation .overpayment ) &&
253
+ Objects .equals (this .prepayment , allocation .prepayment ) &&
254
+ Objects .equals (this .creditNote , allocation .creditNote ) &&
133
255
Objects .equals (this .amount , allocation .amount ) &&
134
- Objects .equals (this .date , allocation .date );
256
+ Objects .equals (this .date , allocation .date ) &&
257
+ Objects .equals (this .statusAttributeString , allocation .statusAttributeString ) &&
258
+ Objects .equals (this .validationErrors , allocation .validationErrors );
135
259
}
136
260
137
261
@ Override
138
262
public int hashCode () {
139
- return Objects .hash (invoice , amount , date );
263
+ return Objects .hash (invoice , overpayment , prepayment , creditNote , amount , date , statusAttributeString , validationErrors );
140
264
}
141
265
142
266
@@ -145,8 +269,13 @@ public String toString() {
145
269
StringBuilder sb = new StringBuilder ();
146
270
sb .append ("class Allocation {\n " );
147
271
sb .append (" invoice: " ).append (toIndentedString (invoice )).append ("\n " );
272
+ sb .append (" overpayment: " ).append (toIndentedString (overpayment )).append ("\n " );
273
+ sb .append (" prepayment: " ).append (toIndentedString (prepayment )).append ("\n " );
274
+ sb .append (" creditNote: " ).append (toIndentedString (creditNote )).append ("\n " );
148
275
sb .append (" amount: " ).append (toIndentedString (amount )).append ("\n " );
149
276
sb .append (" date: " ).append (toIndentedString (date )).append ("\n " );
277
+ sb .append (" statusAttributeString: " ).append (toIndentedString (statusAttributeString )).append ("\n " );
278
+ sb .append (" validationErrors: " ).append (toIndentedString (validationErrors )).append ("\n " );
150
279
sb .append ("}" );
151
280
return sb .toString ();
152
281
}
0 commit comments