Skip to content

Commit 6611fb3

Browse files
[legalentitymanagement] Automated update from Adyen/adyen-openapi@a1f4b19
1 parent 4a7c8d4 commit 6611fb3

7 files changed

Lines changed: 206 additions & 43 deletions

File tree

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"service": "legalentitymanagement",
33
"project": "java",
4-
"generatedAt": "2026-04-10T08:24:57Z",
5-
"openapiCommitSha": "aa5556ef9586980ba6c319d0750fb38d7bbda09b",
4+
"generatedAt": "2026-04-14T07:38:03Z",
5+
"openapiCommitSha": "a1f4b19cca472f4d51aa7568fc8ff0f838ca9f57",
66
"automationCommitSha": "855b6c5526cb5fae757e921687c38df66d31dc4b",
7-
"libraryCommitSha": "334bfa6a6af849c76a7a28c45a36a692ab0274c3"
7+
"libraryCommitSha": "4a7c8d4eb02058d9d3215ba0497d4b2aa8905bea"
88
}

src/main/java/com/adyen/model/legalentitymanagement/BusinessLine.java

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
@JsonPropertyOrder({
3030
BusinessLine.JSON_PROPERTY_ID,
3131
BusinessLine.JSON_PROPERTY_INDUSTRY_CODE,
32+
BusinessLine.JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION,
3233
BusinessLine.JSON_PROPERTY_LEGAL_ENTITY_ID,
3334
BusinessLine.JSON_PROPERTY_PROBLEMS,
3435
BusinessLine.JSON_PROPERTY_SALES_CHANNELS,
@@ -50,6 +51,12 @@ public class BusinessLine {
5051
/** Mark when the attribute has been explicitly set. */
5152
private boolean isSetIndustryCode = false;
5253

54+
public static final String JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION = "industryCodeDescription";
55+
private String industryCodeDescription;
56+
57+
/** Mark when the attribute has been explicitly set. */
58+
private boolean isSetIndustryCodeDescription = false;
59+
5360
public static final String JSON_PROPERTY_LEGAL_ENTITY_ID = "legalEntityId";
5461
private String legalEntityId;
5562

@@ -147,9 +154,12 @@ public static ServiceEnum fromValue(String value) {
147154
public BusinessLine() {}
148155

149156
@JsonCreator
150-
public BusinessLine(@JsonProperty(JSON_PROPERTY_ID) String id) {
157+
public BusinessLine(
158+
@JsonProperty(JSON_PROPERTY_ID) String id,
159+
@JsonProperty(JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION) String industryCodeDescription) {
151160
this();
152161
this.id = id;
162+
this.industryCodeDescription = industryCodeDescription;
153163
}
154164

155165
/**
@@ -222,6 +232,17 @@ public void setIndustryCode(String industryCode) {
222232
isSetIndustryCode = true; // mark as set
223233
}
224234

235+
/**
236+
* The description of the industry code.
237+
*
238+
* @return industryCodeDescription The description of the industry code.
239+
*/
240+
@JsonProperty(JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION)
241+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
242+
public String getIndustryCodeDescription() {
243+
return industryCodeDescription;
244+
}
245+
225246
/**
226247
* Unique identifier of the [legal
227248
* entity](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id)
@@ -567,6 +588,9 @@ public boolean equals(Object o) {
567588
&& Objects.equals(this.isSetId, businessLine.isSetId)
568589
&& Objects.equals(this.industryCode, businessLine.industryCode)
569590
&& Objects.equals(this.isSetIndustryCode, businessLine.isSetIndustryCode)
591+
&& Objects.equals(this.industryCodeDescription, businessLine.industryCodeDescription)
592+
&& Objects.equals(
593+
this.isSetIndustryCodeDescription, businessLine.isSetIndustryCodeDescription)
570594
&& Objects.equals(this.legalEntityId, businessLine.legalEntityId)
571595
&& Objects.equals(this.isSetLegalEntityId, businessLine.isSetLegalEntityId)
572596
&& Objects.equals(this.problems, businessLine.problems)
@@ -590,6 +614,8 @@ public int hashCode() {
590614
isSetId,
591615
industryCode,
592616
isSetIndustryCode,
617+
industryCodeDescription,
618+
isSetIndustryCodeDescription,
593619
legalEntityId,
594620
isSetLegalEntityId,
595621
problems,
@@ -612,6 +638,9 @@ public String toString() {
612638
sb.append("class BusinessLine {\n");
613639
sb.append(" id: ").append(toIndentedString(id)).append("\n");
614640
sb.append(" industryCode: ").append(toIndentedString(industryCode)).append("\n");
641+
sb.append(" industryCodeDescription: ")
642+
.append(toIndentedString(industryCodeDescription))
643+
.append("\n");
615644
sb.append(" legalEntityId: ").append(toIndentedString(legalEntityId)).append("\n");
616645
sb.append(" problems: ").append(toIndentedString(problems)).append("\n");
617646
sb.append(" salesChannels: ").append(toIndentedString(salesChannels)).append("\n");
@@ -649,6 +678,9 @@ public Map<String, Object> getExplicitNulls() {
649678
if (isSetIndustryCode) {
650679
addIfNull(nulls, JSON_PROPERTY_INDUSTRY_CODE, this.industryCode);
651680
}
681+
if (isSetIndustryCodeDescription) {
682+
addIfNull(nulls, JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION, this.industryCodeDescription);
683+
}
652684
if (isSetLegalEntityId) {
653685
addIfNull(nulls, JSON_PROPERTY_LEGAL_ENTITY_ID, this.legalEntityId);
654686
}

src/main/java/com/adyen/model/legalentitymanagement/BusinessLineInfo.java

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
/** BusinessLineInfo */
2929
@JsonPropertyOrder({
3030
BusinessLineInfo.JSON_PROPERTY_INDUSTRY_CODE,
31+
BusinessLineInfo.JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION,
3132
BusinessLineInfo.JSON_PROPERTY_LEGAL_ENTITY_ID,
3233
BusinessLineInfo.JSON_PROPERTY_SALES_CHANNELS,
3334
BusinessLineInfo.JSON_PROPERTY_SERVICE,
@@ -42,6 +43,12 @@ public class BusinessLineInfo {
4243
/** Mark when the attribute has been explicitly set. */
4344
private boolean isSetIndustryCode = false;
4445

46+
public static final String JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION = "industryCodeDescription";
47+
private String industryCodeDescription;
48+
49+
/** Mark when the attribute has been explicitly set. */
50+
private boolean isSetIndustryCodeDescription = false;
51+
4552
public static final String JSON_PROPERTY_LEGAL_ENTITY_ID = "legalEntityId";
4653
private String legalEntityId;
4754

@@ -132,6 +139,13 @@ public static ServiceEnum fromValue(String value) {
132139

133140
public BusinessLineInfo() {}
134141

142+
@JsonCreator
143+
public BusinessLineInfo(
144+
@JsonProperty(JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION) String industryCodeDescription) {
145+
this();
146+
this.industryCodeDescription = industryCodeDescription;
147+
}
148+
135149
/**
136150
* A code that represents the industry of the legal entity for
137151
* [marketplaces](https://docs.adyen.com/marketplaces/verification-requirements/reference-additional-products/#list-industry-codes)
@@ -191,6 +205,17 @@ public void setIndustryCode(String industryCode) {
191205
isSetIndustryCode = true; // mark as set
192206
}
193207

208+
/**
209+
* The description of the industry code.
210+
*
211+
* @return industryCodeDescription The description of the industry code.
212+
*/
213+
@JsonProperty(JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION)
214+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
215+
public String getIndustryCodeDescription() {
216+
return industryCodeDescription;
217+
}
218+
194219
/**
195220
* Unique identifier of the [legal
196221
* entity](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id)
@@ -491,6 +516,9 @@ public boolean equals(Object o) {
491516
BusinessLineInfo businessLineInfo = (BusinessLineInfo) o;
492517
return Objects.equals(this.industryCode, businessLineInfo.industryCode)
493518
&& Objects.equals(this.isSetIndustryCode, businessLineInfo.isSetIndustryCode)
519+
&& Objects.equals(this.industryCodeDescription, businessLineInfo.industryCodeDescription)
520+
&& Objects.equals(
521+
this.isSetIndustryCodeDescription, businessLineInfo.isSetIndustryCodeDescription)
494522
&& Objects.equals(this.legalEntityId, businessLineInfo.legalEntityId)
495523
&& Objects.equals(this.isSetLegalEntityId, businessLineInfo.isSetLegalEntityId)
496524
&& Objects.equals(this.salesChannels, businessLineInfo.salesChannels)
@@ -510,6 +538,8 @@ public int hashCode() {
510538
return Objects.hash(
511539
industryCode,
512540
isSetIndustryCode,
541+
industryCodeDescription,
542+
isSetIndustryCodeDescription,
513543
legalEntityId,
514544
isSetLegalEntityId,
515545
salesChannels,
@@ -529,6 +559,9 @@ public String toString() {
529559
StringBuilder sb = new StringBuilder();
530560
sb.append("class BusinessLineInfo {\n");
531561
sb.append(" industryCode: ").append(toIndentedString(industryCode)).append("\n");
562+
sb.append(" industryCodeDescription: ")
563+
.append(toIndentedString(industryCodeDescription))
564+
.append("\n");
532565
sb.append(" legalEntityId: ").append(toIndentedString(legalEntityId)).append("\n");
533566
sb.append(" salesChannels: ").append(toIndentedString(salesChannels)).append("\n");
534567
sb.append(" service: ").append(toIndentedString(service)).append("\n");
@@ -562,6 +595,9 @@ public Map<String, Object> getExplicitNulls() {
562595
if (isSetIndustryCode) {
563596
addIfNull(nulls, JSON_PROPERTY_INDUSTRY_CODE, this.industryCode);
564597
}
598+
if (isSetIndustryCodeDescription) {
599+
addIfNull(nulls, JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION, this.industryCodeDescription);
600+
}
565601
if (isSetLegalEntityId) {
566602
addIfNull(nulls, JSON_PROPERTY_LEGAL_ENTITY_ID, this.legalEntityId);
567603
}

src/main/java/com/adyen/model/legalentitymanagement/BusinessLineInfoUpdate.java

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
package com.adyen.model.legalentitymanagement;
1313

1414
import com.fasterxml.jackson.annotation.JsonAnyGetter;
15+
import com.fasterxml.jackson.annotation.JsonCreator;
1516
import com.fasterxml.jackson.annotation.JsonIgnore;
1617
import com.fasterxml.jackson.annotation.JsonInclude;
1718
import com.fasterxml.jackson.annotation.JsonProperty;
@@ -24,6 +25,7 @@
2425
/** BusinessLineInfoUpdate */
2526
@JsonPropertyOrder({
2627
BusinessLineInfoUpdate.JSON_PROPERTY_INDUSTRY_CODE,
28+
BusinessLineInfoUpdate.JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION,
2729
BusinessLineInfoUpdate.JSON_PROPERTY_SALES_CHANNELS,
2830
BusinessLineInfoUpdate.JSON_PROPERTY_SOURCE_OF_FUNDS,
2931
BusinessLineInfoUpdate.JSON_PROPERTY_WEB_DATA,
@@ -36,6 +38,12 @@ public class BusinessLineInfoUpdate {
3638
/** Mark when the attribute has been explicitly set. */
3739
private boolean isSetIndustryCode = false;
3840

41+
public static final String JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION = "industryCodeDescription";
42+
private String industryCodeDescription;
43+
44+
/** Mark when the attribute has been explicitly set. */
45+
private boolean isSetIndustryCodeDescription = false;
46+
3947
public static final String JSON_PROPERTY_SALES_CHANNELS = "salesChannels";
4048
private List<String> salesChannels;
4149

@@ -68,6 +76,13 @@ public class BusinessLineInfoUpdate {
6876

6977
public BusinessLineInfoUpdate() {}
7078

79+
@JsonCreator
80+
public BusinessLineInfoUpdate(
81+
@JsonProperty(JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION) String industryCodeDescription) {
82+
this();
83+
this.industryCodeDescription = industryCodeDescription;
84+
}
85+
7186
/**
7287
* A code that represents the industry of your legal entity. For example, **4431A** for computer
7388
* software stores.
@@ -109,6 +124,17 @@ public void setIndustryCode(String industryCode) {
109124
isSetIndustryCode = true; // mark as set
110125
}
111126

127+
/**
128+
* The description of the industry code.
129+
*
130+
* @return industryCodeDescription The description of the industry code.
131+
*/
132+
@JsonProperty(JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION)
133+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
134+
public String getIndustryCodeDescription() {
135+
return industryCodeDescription;
136+
}
137+
112138
/**
113139
* A list of channels where goods or services are sold. Possible values: **pos**, **posMoto**,
114140
* **eCommerce**, **ecomMoto**, **payByLink**. Required only in combination with the
@@ -321,6 +347,10 @@ public boolean equals(Object o) {
321347
BusinessLineInfoUpdate businessLineInfoUpdate = (BusinessLineInfoUpdate) o;
322348
return Objects.equals(this.industryCode, businessLineInfoUpdate.industryCode)
323349
&& Objects.equals(this.isSetIndustryCode, businessLineInfoUpdate.isSetIndustryCode)
350+
&& Objects.equals(
351+
this.industryCodeDescription, businessLineInfoUpdate.industryCodeDescription)
352+
&& Objects.equals(
353+
this.isSetIndustryCodeDescription, businessLineInfoUpdate.isSetIndustryCodeDescription)
324354
&& Objects.equals(this.salesChannels, businessLineInfoUpdate.salesChannels)
325355
&& Objects.equals(this.isSetSalesChannels, businessLineInfoUpdate.isSetSalesChannels)
326356
&& Objects.equals(this.sourceOfFunds, businessLineInfoUpdate.sourceOfFunds)
@@ -336,6 +366,8 @@ public int hashCode() {
336366
return Objects.hash(
337367
industryCode,
338368
isSetIndustryCode,
369+
industryCodeDescription,
370+
isSetIndustryCodeDescription,
339371
salesChannels,
340372
isSetSalesChannels,
341373
sourceOfFunds,
@@ -351,6 +383,9 @@ public String toString() {
351383
StringBuilder sb = new StringBuilder();
352384
sb.append("class BusinessLineInfoUpdate {\n");
353385
sb.append(" industryCode: ").append(toIndentedString(industryCode)).append("\n");
386+
sb.append(" industryCodeDescription: ")
387+
.append(toIndentedString(industryCodeDescription))
388+
.append("\n");
354389
sb.append(" salesChannels: ").append(toIndentedString(salesChannels)).append("\n");
355390
sb.append(" sourceOfFunds: ").append(toIndentedString(sourceOfFunds)).append("\n");
356391
sb.append(" webData: ").append(toIndentedString(webData)).append("\n");
@@ -382,6 +417,9 @@ public Map<String, Object> getExplicitNulls() {
382417
if (isSetIndustryCode) {
383418
addIfNull(nulls, JSON_PROPERTY_INDUSTRY_CODE, this.industryCode);
384419
}
420+
if (isSetIndustryCodeDescription) {
421+
addIfNull(nulls, JSON_PROPERTY_INDUSTRY_CODE_DESCRIPTION, this.industryCodeDescription);
422+
}
385423
if (isSetSalesChannels) {
386424
addIfNull(nulls, JSON_PROPERTY_SALES_CHANNELS, this.salesChannels);
387425
}

src/main/java/com/adyen/model/legalentitymanagement/IbanAccountIdentification.java

Lines changed: 50 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,17 @@
2525

2626
/** IbanAccountIdentification */
2727
@JsonPropertyOrder({
28+
IbanAccountIdentification.JSON_PROPERTY_BIC,
2829
IbanAccountIdentification.JSON_PROPERTY_IBAN,
2930
IbanAccountIdentification.JSON_PROPERTY_TYPE
3031
})
3132
public class IbanAccountIdentification {
33+
public static final String JSON_PROPERTY_BIC = "bic";
34+
private String bic;
35+
36+
/** Mark when the attribute has been explicitly set. */
37+
private boolean isSetBic = false;
38+
3239
public static final String JSON_PROPERTY_IBAN = "iban";
3340
private String iban;
3441

@@ -88,6 +95,41 @@ public static TypeEnum fromValue(String value) {
8895

8996
public IbanAccountIdentification() {}
9097

98+
/**
99+
* The bank&#39;s 8- or 11-character BIC or SWIFT code.
100+
*
101+
* @param bic The bank&#39;s 8- or 11-character BIC or SWIFT code.
102+
* @return the current {@code IbanAccountIdentification} instance, allowing for method chaining
103+
*/
104+
public IbanAccountIdentification bic(String bic) {
105+
this.bic = bic;
106+
isSetBic = true; // mark as set
107+
return this;
108+
}
109+
110+
/**
111+
* The bank&#39;s 8- or 11-character BIC or SWIFT code.
112+
*
113+
* @return bic The bank&#39;s 8- or 11-character BIC or SWIFT code.
114+
*/
115+
@JsonProperty(JSON_PROPERTY_BIC)
116+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
117+
public String getBic() {
118+
return bic;
119+
}
120+
121+
/**
122+
* The bank&#39;s 8- or 11-character BIC or SWIFT code.
123+
*
124+
* @param bic The bank&#39;s 8- or 11-character BIC or SWIFT code.
125+
*/
126+
@JsonProperty(JSON_PROPERTY_BIC)
127+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
128+
public void setBic(String bic) {
129+
this.bic = bic;
130+
isSetBic = true; // mark as set
131+
}
132+
91133
/**
92134
* The international bank account number as defined in the
93135
* [ISO-13616](https://www.iso.org/standard/81090.html) standard.
@@ -194,21 +236,24 @@ public boolean equals(Object o) {
194236
return false;
195237
}
196238
IbanAccountIdentification ibanAccountIdentification = (IbanAccountIdentification) o;
197-
return Objects.equals(this.iban, ibanAccountIdentification.iban)
239+
return Objects.equals(this.bic, ibanAccountIdentification.bic)
240+
&& Objects.equals(this.isSetBic, ibanAccountIdentification.isSetBic)
241+
&& Objects.equals(this.iban, ibanAccountIdentification.iban)
198242
&& Objects.equals(this.isSetIban, ibanAccountIdentification.isSetIban)
199243
&& Objects.equals(this.type, ibanAccountIdentification.type)
200244
&& Objects.equals(this.isSetType, ibanAccountIdentification.isSetType);
201245
}
202246

203247
@Override
204248
public int hashCode() {
205-
return Objects.hash(iban, isSetIban, type, isSetType);
249+
return Objects.hash(bic, isSetBic, iban, isSetIban, type, isSetType);
206250
}
207251

208252
@Override
209253
public String toString() {
210254
StringBuilder sb = new StringBuilder();
211255
sb.append("class IbanAccountIdentification {\n");
256+
sb.append(" bic: ").append(toIndentedString(bic)).append("\n");
212257
sb.append(" iban: ").append(toIndentedString(iban)).append("\n");
213258
sb.append(" type: ").append(toIndentedString(type)).append("\n");
214259
sb.append("}");
@@ -235,6 +280,9 @@ public Map<String, Object> getExplicitNulls() {
235280

236281
Map<String, Object> nulls = new HashMap<>();
237282

283+
if (isSetBic) {
284+
addIfNull(nulls, JSON_PROPERTY_BIC, this.bic);
285+
}
238286
if (isSetIban) {
239287
addIfNull(nulls, JSON_PROPERTY_IBAN, this.iban);
240288
}

0 commit comments

Comments
 (0)