Skip to content

Commit fab1bec

Browse files
authored
Regenerate models (#1612)
1 parent 8d1151f commit fab1bec

File tree

203 files changed

+2759
-406
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+2759
-406
lines changed

src/main/java/com/adyen/model/management/AccelInfo.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,12 +230,15 @@ public boolean equals(Object o) {
230230
}
231231
AccelInfo accelInfo = (AccelInfo) o;
232232
return Objects.equals(this.processingType, accelInfo.processingType)
233-
&& Objects.equals(this.transactionDescription, accelInfo.transactionDescription);
233+
&& Objects.equals(this.isSetProcessingType, accelInfo.isSetProcessingType)
234+
&& Objects.equals(this.transactionDescription, accelInfo.transactionDescription)
235+
&& Objects.equals(this.isSetTransactionDescription, accelInfo.isSetTransactionDescription);
234236
}
235237

236238
@Override
237239
public int hashCode() {
238-
return Objects.hash(processingType, transactionDescription);
240+
return Objects.hash(
241+
processingType, isSetProcessingType, transactionDescription, isSetTransactionDescription);
239242
}
240243

241244
@Override

src/main/java/com/adyen/model/management/AdditionalCommission.java

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,13 +191,23 @@ public boolean equals(Object o) {
191191
}
192192
AdditionalCommission additionalCommission = (AdditionalCommission) o;
193193
return Objects.equals(this.balanceAccountId, additionalCommission.balanceAccountId)
194+
&& Objects.equals(this.isSetBalanceAccountId, additionalCommission.isSetBalanceAccountId)
194195
&& Objects.equals(this.fixedAmount, additionalCommission.fixedAmount)
195-
&& Objects.equals(this.variablePercentage, additionalCommission.variablePercentage);
196+
&& Objects.equals(this.isSetFixedAmount, additionalCommission.isSetFixedAmount)
197+
&& Objects.equals(this.variablePercentage, additionalCommission.variablePercentage)
198+
&& Objects.equals(
199+
this.isSetVariablePercentage, additionalCommission.isSetVariablePercentage);
196200
}
197201

198202
@Override
199203
public int hashCode() {
200-
return Objects.hash(balanceAccountId, fixedAmount, variablePercentage);
204+
return Objects.hash(
205+
balanceAccountId,
206+
isSetBalanceAccountId,
207+
fixedAmount,
208+
isSetFixedAmount,
209+
variablePercentage,
210+
isSetVariablePercentage);
201211
}
202212

203213
@Override

src/main/java/com/adyen/model/management/AdditionalSettings.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,14 @@ public boolean equals(Object o) {
196196
}
197197
AdditionalSettings additionalSettings = (AdditionalSettings) o;
198198
return Objects.equals(this.includeEventCodes, additionalSettings.includeEventCodes)
199-
&& Objects.equals(this.properties, additionalSettings.properties);
199+
&& Objects.equals(this.isSetIncludeEventCodes, additionalSettings.isSetIncludeEventCodes)
200+
&& Objects.equals(this.properties, additionalSettings.properties)
201+
&& Objects.equals(this.isSetProperties, additionalSettings.isSetProperties);
200202
}
201203

202204
@Override
203205
public int hashCode() {
204-
return Objects.hash(includeEventCodes, properties);
206+
return Objects.hash(includeEventCodes, isSetIncludeEventCodes, properties, isSetProperties);
205207
}
206208

207209
@Override

src/main/java/com/adyen/model/management/AdditionalSettingsResponse.java

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,13 +249,24 @@ public boolean equals(Object o) {
249249
}
250250
AdditionalSettingsResponse additionalSettingsResponse = (AdditionalSettingsResponse) o;
251251
return Objects.equals(this.excludeEventCodes, additionalSettingsResponse.excludeEventCodes)
252+
&& Objects.equals(
253+
this.isSetExcludeEventCodes, additionalSettingsResponse.isSetExcludeEventCodes)
252254
&& Objects.equals(this.includeEventCodes, additionalSettingsResponse.includeEventCodes)
253-
&& Objects.equals(this.properties, additionalSettingsResponse.properties);
255+
&& Objects.equals(
256+
this.isSetIncludeEventCodes, additionalSettingsResponse.isSetIncludeEventCodes)
257+
&& Objects.equals(this.properties, additionalSettingsResponse.properties)
258+
&& Objects.equals(this.isSetProperties, additionalSettingsResponse.isSetProperties);
254259
}
255260

256261
@Override
257262
public int hashCode() {
258-
return Objects.hash(excludeEventCodes, includeEventCodes, properties);
263+
return Objects.hash(
264+
excludeEventCodes,
265+
isSetExcludeEventCodes,
266+
includeEventCodes,
267+
isSetIncludeEventCodes,
268+
properties,
269+
isSetProperties);
259270
}
260271

261272
@Override

src/main/java/com/adyen/model/management/Address.java

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,18 +377,38 @@ public boolean equals(Object o) {
377377
}
378378
Address address = (Address) o;
379379
return Objects.equals(this.city, address.city)
380+
&& Objects.equals(this.isSetCity, address.isSetCity)
380381
&& Objects.equals(this.companyName, address.companyName)
382+
&& Objects.equals(this.isSetCompanyName, address.isSetCompanyName)
381383
&& Objects.equals(this.country, address.country)
384+
&& Objects.equals(this.isSetCountry, address.isSetCountry)
382385
&& Objects.equals(this.postalCode, address.postalCode)
386+
&& Objects.equals(this.isSetPostalCode, address.isSetPostalCode)
383387
&& Objects.equals(this.stateOrProvince, address.stateOrProvince)
388+
&& Objects.equals(this.isSetStateOrProvince, address.isSetStateOrProvince)
384389
&& Objects.equals(this.streetAddress, address.streetAddress)
385-
&& Objects.equals(this.streetAddress2, address.streetAddress2);
390+
&& Objects.equals(this.isSetStreetAddress, address.isSetStreetAddress)
391+
&& Objects.equals(this.streetAddress2, address.streetAddress2)
392+
&& Objects.equals(this.isSetStreetAddress2, address.isSetStreetAddress2);
386393
}
387394

388395
@Override
389396
public int hashCode() {
390397
return Objects.hash(
391-
city, companyName, country, postalCode, stateOrProvince, streetAddress, streetAddress2);
398+
city,
399+
isSetCity,
400+
companyName,
401+
isSetCompanyName,
402+
country,
403+
isSetCountry,
404+
postalCode,
405+
isSetPostalCode,
406+
stateOrProvince,
407+
isSetStateOrProvince,
408+
streetAddress,
409+
isSetStreetAddress,
410+
streetAddress2,
411+
isSetStreetAddress2);
392412
}
393413

394414
@Override

src/main/java/com/adyen/model/management/AffirmInfo.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,14 @@ public boolean equals(Object o) {
190190
}
191191
AffirmInfo affirmInfo = (AffirmInfo) o;
192192
return Objects.equals(this.pricePlan, affirmInfo.pricePlan)
193-
&& Objects.equals(this.supportEmail, affirmInfo.supportEmail);
193+
&& Objects.equals(this.isSetPricePlan, affirmInfo.isSetPricePlan)
194+
&& Objects.equals(this.supportEmail, affirmInfo.supportEmail)
195+
&& Objects.equals(this.isSetSupportEmail, affirmInfo.isSetSupportEmail);
194196
}
195197

196198
@Override
197199
public int hashCode() {
198-
return Objects.hash(pricePlan, supportEmail);
200+
return Objects.hash(pricePlan, isSetPricePlan, supportEmail, isSetSupportEmail);
199201
}
200202

201203
@Override

src/main/java/com/adyen/model/management/AfterpayTouchInfo.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,14 @@ public boolean equals(Object o) {
146146
}
147147
AfterpayTouchInfo afterpayTouchInfo = (AfterpayTouchInfo) o;
148148
return Objects.equals(this.supportEmail, afterpayTouchInfo.supportEmail)
149-
&& Objects.equals(this.supportUrl, afterpayTouchInfo.supportUrl);
149+
&& Objects.equals(this.isSetSupportEmail, afterpayTouchInfo.isSetSupportEmail)
150+
&& Objects.equals(this.supportUrl, afterpayTouchInfo.supportUrl)
151+
&& Objects.equals(this.isSetSupportUrl, afterpayTouchInfo.isSetSupportUrl);
150152
}
151153

152154
@Override
153155
public int hashCode() {
154-
return Objects.hash(supportEmail, supportUrl);
156+
return Objects.hash(supportEmail, isSetSupportEmail, supportUrl, isSetSupportUrl);
155157
}
156158

157159
@Override

src/main/java/com/adyen/model/management/AlipayPlusInfo.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,14 @@ public boolean equals(Object o) {
101101
return false;
102102
}
103103
AlipayPlusInfo alipayPlusInfo = (AlipayPlusInfo) o;
104-
return Objects.equals(this.settlementCurrencyCode, alipayPlusInfo.settlementCurrencyCode);
104+
return Objects.equals(this.settlementCurrencyCode, alipayPlusInfo.settlementCurrencyCode)
105+
&& Objects.equals(
106+
this.isSetSettlementCurrencyCode, alipayPlusInfo.isSetSettlementCurrencyCode);
105107
}
106108

107109
@Override
108110
public int hashCode() {
109-
return Objects.hash(settlementCurrencyCode);
111+
return Objects.hash(settlementCurrencyCode, isSetSettlementCurrencyCode);
110112
}
111113

112114
@Override

src/main/java/com/adyen/model/management/AllowedOrigin.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,13 +188,16 @@ public boolean equals(Object o) {
188188
}
189189
AllowedOrigin allowedOrigin = (AllowedOrigin) o;
190190
return Objects.equals(this.links, allowedOrigin.links)
191+
&& Objects.equals(this.isSetLinks, allowedOrigin.isSetLinks)
191192
&& Objects.equals(this.domain, allowedOrigin.domain)
192-
&& Objects.equals(this.id, allowedOrigin.id);
193+
&& Objects.equals(this.isSetDomain, allowedOrigin.isSetDomain)
194+
&& Objects.equals(this.id, allowedOrigin.id)
195+
&& Objects.equals(this.isSetId, allowedOrigin.isSetId);
193196
}
194197

195198
@Override
196199
public int hashCode() {
197-
return Objects.hash(links, domain, id);
200+
return Objects.hash(links, isSetLinks, domain, isSetDomain, id, isSetId);
198201
}
199202

200203
@Override

src/main/java/com/adyen/model/management/AllowedOriginsResponse.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,13 @@ public boolean equals(Object o) {
111111
return false;
112112
}
113113
AllowedOriginsResponse allowedOriginsResponse = (AllowedOriginsResponse) o;
114-
return Objects.equals(this.data, allowedOriginsResponse.data);
114+
return Objects.equals(this.data, allowedOriginsResponse.data)
115+
&& Objects.equals(this.isSetData, allowedOriginsResponse.isSetData);
115116
}
116117

117118
@Override
118119
public int hashCode() {
119-
return Objects.hash(data);
120+
return Objects.hash(data, isSetData);
120121
}
121122

122123
@Override

0 commit comments

Comments
 (0)