Skip to content

Commit 1233f2e

Browse files
author
Adyen Automation
committed
false[adyen-sdk-automation] automated change
1 parent f406b92 commit 1233f2e

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

Adyen/Model/LegalEntityManagement/OnboardingLinkSettings.cs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public partial class OnboardingLinkSettings : IEquatable<OnboardingLinkSettings>
3737
/// </summary>
3838
/// <param name="acceptedCountries">The list of countries the user can choose from in hosted onboarding when &#x60;editPrefilledCountry&#x60; is allowed. The value must be in the two-character [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code format. The array is empty by default, allowing all [countries and regions supported by hosted onboarding](https://docs.adyen.com/platforms/onboard-users/#hosted-onboarding)..</param>
3939
/// <param name="allowBankAccountFormatSelection">Default value: **false** Indicates if the user can select the format for their payout account (if applicable)..</param>
40+
/// <param name="allowDebugUi">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..</param>
4041
/// <param name="allowIntraRegionCrossBorderPayout">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..</param>
4142
/// <param name="changeLegalEntityType">Default value: **true** Indicates if the user can change their legal entity type..</param>
4243
/// <param name="editPrefilledCountry">Default value: **true** Indicates if the user can change the country of their legal entity&#39;s address, for example the registered address of an organization..</param>
@@ -51,10 +52,11 @@ public partial class OnboardingLinkSettings : IEquatable<OnboardingLinkSettings>
5152
/// <param name="requirePciSignPos">Default value: **false** Indicates if the user is required to sign a PCI questionnaires for the **pos** sales channel type..</param>
5253
/// <param name="requirePciSignPosMoto">Default value: **false** Indicates if the user is required to sign a PCI questionnaires for the **posMoto** sales channel type..</param>
5354
/// <param name="transferInstrumentLimit">The maximum number of transfer instruments the user can create..</param>
54-
public OnboardingLinkSettings(List<string> acceptedCountries = default(List<string>), bool? allowBankAccountFormatSelection = default(bool?), bool? allowIntraRegionCrossBorderPayout = default(bool?), bool? changeLegalEntityType = default(bool?), bool? editPrefilledCountry = default(bool?), bool? enforceLegalAge = default(bool?), bool? hideOnboardingIntroductionIndividual = default(bool?), bool? hideOnboardingIntroductionOrganization = default(bool?), bool? hideOnboardingIntroductionSoleProprietor = default(bool?), bool? hideOnboardingIntroductionTrust = default(bool?), bool? instantBankVerification = default(bool?), bool? requirePciSignEcomMoto = default(bool?), bool? requirePciSignEcommerce = default(bool?), bool? requirePciSignPos = default(bool?), bool? requirePciSignPosMoto = default(bool?), int? transferInstrumentLimit = default(int?))
55+
public OnboardingLinkSettings(List<string> acceptedCountries = default(List<string>), bool? allowBankAccountFormatSelection = default(bool?), bool? allowDebugUi = default(bool?), bool? allowIntraRegionCrossBorderPayout = default(bool?), bool? changeLegalEntityType = default(bool?), bool? editPrefilledCountry = default(bool?), bool? enforceLegalAge = default(bool?), bool? hideOnboardingIntroductionIndividual = default(bool?), bool? hideOnboardingIntroductionOrganization = default(bool?), bool? hideOnboardingIntroductionSoleProprietor = default(bool?), bool? hideOnboardingIntroductionTrust = default(bool?), bool? instantBankVerification = default(bool?), bool? requirePciSignEcomMoto = default(bool?), bool? requirePciSignEcommerce = default(bool?), bool? requirePciSignPos = default(bool?), bool? requirePciSignPosMoto = default(bool?), int? transferInstrumentLimit = default(int?))
5556
{
5657
this.AcceptedCountries = acceptedCountries;
5758
this.AllowBankAccountFormatSelection = allowBankAccountFormatSelection;
59+
this.AllowDebugUi = allowDebugUi;
5860
this.AllowIntraRegionCrossBorderPayout = allowIntraRegionCrossBorderPayout;
5961
this.ChangeLegalEntityType = changeLegalEntityType;
6062
this.EditPrefilledCountry = editPrefilledCountry;
@@ -85,6 +87,13 @@ public partial class OnboardingLinkSettings : IEquatable<OnboardingLinkSettings>
8587
[DataMember(Name = "allowBankAccountFormatSelection", EmitDefaultValue = false)]
8688
public bool? AllowBankAccountFormatSelection { get; set; }
8789

90+
/// <summary>
91+
/// 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.
92+
/// </summary>
93+
/// <value>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.</value>
94+
[DataMember(Name = "allowDebugUi", EmitDefaultValue = false)]
95+
public bool? AllowDebugUi { get; set; }
96+
8897
/// <summary>
8998
/// 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.
9099
/// </summary>
@@ -193,6 +202,7 @@ public override string ToString()
193202
sb.Append("class OnboardingLinkSettings {\n");
194203
sb.Append(" AcceptedCountries: ").Append(AcceptedCountries).Append("\n");
195204
sb.Append(" AllowBankAccountFormatSelection: ").Append(AllowBankAccountFormatSelection).Append("\n");
205+
sb.Append(" AllowDebugUi: ").Append(AllowDebugUi).Append("\n");
196206
sb.Append(" AllowIntraRegionCrossBorderPayout: ").Append(AllowIntraRegionCrossBorderPayout).Append("\n");
197207
sb.Append(" ChangeLegalEntityType: ").Append(ChangeLegalEntityType).Append("\n");
198208
sb.Append(" EditPrefilledCountry: ").Append(EditPrefilledCountry).Append("\n");
@@ -252,6 +262,10 @@ public bool Equals(OnboardingLinkSettings input)
252262
this.AllowBankAccountFormatSelection == input.AllowBankAccountFormatSelection ||
253263
this.AllowBankAccountFormatSelection.Equals(input.AllowBankAccountFormatSelection)
254264
) &&
265+
(
266+
this.AllowDebugUi == input.AllowDebugUi ||
267+
this.AllowDebugUi.Equals(input.AllowDebugUi)
268+
) &&
255269
(
256270
this.AllowIntraRegionCrossBorderPayout == input.AllowIntraRegionCrossBorderPayout ||
257271
this.AllowIntraRegionCrossBorderPayout.Equals(input.AllowIntraRegionCrossBorderPayout)
@@ -324,6 +338,7 @@ public override int GetHashCode()
324338
hashCode = (hashCode * 59) + this.AcceptedCountries.GetHashCode();
325339
}
326340
hashCode = (hashCode * 59) + this.AllowBankAccountFormatSelection.GetHashCode();
341+
hashCode = (hashCode * 59) + this.AllowDebugUi.GetHashCode();
327342
hashCode = (hashCode * 59) + this.AllowIntraRegionCrossBorderPayout.GetHashCode();
328343
hashCode = (hashCode * 59) + this.ChangeLegalEntityType.GetHashCode();
329344
hashCode = (hashCode * 59) + this.EditPrefilledCountry.GetHashCode();

0 commit comments

Comments
 (0)