Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions sdk-generation-log/legalentitymanagement.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"service": "legalentitymanagement",
"project": "node",
"generatedAt": "2026-04-20T10:46:58Z",
"openapiCommitSha": "3550ecd3f320efaad6bee55ffed5122cb9ba09d5",
"automationCommitSha": "4ad0c0c7e87bc0e5994a9a3350a991d0691350bb",
"libraryCommitSha": "e0c07e05d8c98b20f336ef0fa714fe95f4172c2f"
}
10 changes: 10 additions & 0 deletions src/typings/legalEntityManagement/businessLine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ export class BusinessLine {
*/
"industryCode": string;
/**
* The description of the industry code.
*/
"industryCodeDescription"?: string;
/**
* Unique identifier of the [legal entity](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) that owns the business line.
*/
"legalEntityId": string;
Expand Down Expand Up @@ -62,6 +66,12 @@ export class BusinessLine {
"type": "string",
"format": ""
},
{
"name": "industryCodeDescription",
"baseName": "industryCodeDescription",
"type": "string",
"format": ""
},
{
"name": "legalEntityId",
"baseName": "legalEntityId",
Expand Down
10 changes: 10 additions & 0 deletions src/typings/legalEntityManagement/businessLineInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ export class BusinessLineInfo {
*/
"industryCode": string;
/**
* The description of the industry code.
*/
"industryCodeDescription"?: string;
/**
* Unique identifier of the [legal entity](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) that owns the business line.
*/
"legalEntityId": string;
Expand Down Expand Up @@ -47,6 +51,12 @@ export class BusinessLineInfo {
"type": "string",
"format": ""
},
{
"name": "industryCodeDescription",
"baseName": "industryCodeDescription",
"type": "string",
"format": ""
},
{
"name": "legalEntityId",
"baseName": "legalEntityId",
Expand Down
10 changes: 10 additions & 0 deletions src/typings/legalEntityManagement/businessLineInfoUpdate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ export class BusinessLineInfoUpdate {
*/
"industryCode"?: string;
/**
* The description of the industry code.
*/
"industryCodeDescription"?: string;
/**
* A list of channels where goods or services are sold. Possible values: **pos**, **posMoto**, **eCommerce**, **ecomMoto**, **payByLink**. Required only in combination with the `service` **paymentProcessing**.
*/
"salesChannels"?: Array<string>;
Expand All @@ -39,6 +43,12 @@ export class BusinessLineInfoUpdate {
"type": "string",
"format": ""
},
{
"name": "industryCodeDescription",
"baseName": "industryCodeDescription",
"type": "string",
"format": ""
},
{
"name": "salesChannels",
"baseName": "salesChannels",
Expand Down
10 changes: 10 additions & 0 deletions src/typings/legalEntityManagement/ibanAccountIdentification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@


export class IbanAccountIdentification {
/**
* The bank\'s 8- or 11-character BIC or SWIFT code.
*/
"bic"?: string;
/**
* The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.
*/
Expand All @@ -23,6 +27,12 @@ export class IbanAccountIdentification {
static readonly mapping: {[index: string]: string} | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "bic",
"baseName": "bic",
"type": "string",
"format": ""
},
{
"name": "iban",
"baseName": "iban",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class LegalEntityAssociation {
*/
"settlorExemptionReason"?: Array<string>;
/**
* Defines the relationship of the legal entity to the current legal entity. Possible value for individuals: **legalRepresentative**. Possible values for organizations: **director**, **signatory**, **trustOwnership**, **uboThroughOwnership**, **uboThroughControl**, or **ultimateParentCompany**. Possible values for sole proprietorships: **soleProprietorship**. Possible value for trusts: **trust**. Possible values for trust members: **definedBeneficiary**, **protector**, **secondaryTrustee**, **settlor**, **uboThroughControl**, or **uboThroughOwnership**. Possible value for unincorporated partnership: **unincorporatedPartnership**. Possible values for unincorporated partnership members: **secondaryPartner**, **uboThroughControl**, **uboThroughOwnership**
* Defines the relationship of the legal entity to the current legal entity. Possible value for individuals: **legalRepresentative**. Possible values for organizations: **director**, **signatory**, **trustOwnership**, **uboThroughOwnership**, **uboThroughControl**, **ultimateParentCompany**, or **immediateParentCompany**. Possible values for sole proprietorships: **soleProprietorship**. Possible value for trusts: **trust**. Possible values for trust members: **definedBeneficiary**, **protector**, **secondaryTrustee**, **settlor**, **uboThroughControl**, or **uboThroughOwnership**. Possible value for unincorporated partnership: **unincorporatedPartnership**. Possible values for unincorporated partnership members: **secondaryPartner**, **uboThroughControl**, **uboThroughOwnership**
*/
"type": LegalEntityAssociation.TypeEnum;

Expand Down
2 changes: 1 addition & 1 deletion src/typings/legalEntityManagement/organization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class Organization {
*/
"financialReports"?: Array<FinancialReport>;
/**
* The global legal entity identifier for the organization.
* The global legal entity identifier for the organization. This field is not required if the `registrationNumber` for the organization has been provided.
*/
"globalLegalEntityIdentifier"?: string;
/**
Expand Down
Loading