Skip to content

Commit f496d41

Browse files
committed
Generate LEM API
1 parent 3abd783 commit f496d41

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

src/typings/legalEntityManagement/onboardingLinkSettings.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ export class OnboardingLinkSettings {
1818
*/
1919
'allowBankAccountFormatSelection'?: boolean;
2020
/**
21+
* Default value: **true** Indicates whether the debug user interface (UI) is enabled. The debug UI provides information for your support staff to diagnose and resolve user issues during onboarding. It can be accessed using a keyboard shortcut.
22+
*/
23+
'allowDebugUi'?: boolean;
24+
/**
2125
* Default value: **false** Indicates if the user can select a payout account in a different EU/EEA location (including Switzerland and the UK) than the location of their legal entity.
2226
*/
2327
'allowIntraRegionCrossBorderPayout'?: boolean;
@@ -87,6 +91,11 @@ export class OnboardingLinkSettings {
8791
"baseName": "allowBankAccountFormatSelection",
8892
"type": "boolean"
8993
},
94+
{
95+
"name": "allowDebugUi",
96+
"baseName": "allowDebugUi",
97+
"type": "boolean"
98+
},
9099
{
91100
"name": "allowIntraRegionCrossBorderPayout",
92101
"baseName": "allowIntraRegionCrossBorderPayout",

src/typings/legalEntityManagement/termsOfServiceAcceptanceInfo.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class TermsOfServiceAcceptanceInfo {
1818
*/
1919
'acceptedFor'?: string;
2020
/**
21-
* The date when the Terms of Service were accepted.
21+
* The date when the Terms of Service were accepted, in ISO 8601 extended format. For example, 2022-12-18T10:15:30+01:00.
2222
*/
2323
'createdAt'?: Date;
2424
/**
@@ -29,6 +29,10 @@ export class TermsOfServiceAcceptanceInfo {
2929
* The type of Terms of Service. Possible values: * **adyenForPlatformsManage** * **adyenIssuing** * **adyenForPlatformsAdvanced** * **adyenCapital** * **adyenAccount** * **adyenCard** * **adyenFranchisee** * **adyenPccr** * **adyenChargeCard**
3030
*/
3131
'type'?: TermsOfServiceAcceptanceInfo.TypeEnum;
32+
/**
33+
* The expiration date for the Terms of Service acceptance, in ISO 8601 extended format. For example, 2022-12-18T00:00:00+01:00.
34+
*/
35+
'validTo'?: Date;
3236

3337
static discriminator: string | undefined = undefined;
3438

@@ -57,6 +61,11 @@ export class TermsOfServiceAcceptanceInfo {
5761
"name": "type",
5862
"baseName": "type",
5963
"type": "TermsOfServiceAcceptanceInfo.TypeEnum"
64+
},
65+
{
66+
"name": "validTo",
67+
"baseName": "validTo",
68+
"type": "Date"
6069
} ];
6170

6271
static getAttributeTypeMap() {

0 commit comments

Comments
 (0)