Skip to content

Commit

Permalink
false[adyen-sdk-automation] automated change
Browse files Browse the repository at this point in the history
  • Loading branch information
AdyenAutomationBot committed Jul 15, 2024
1 parent 13705b1 commit bd655a9
Show file tree
Hide file tree
Showing 9 changed files with 255 additions and 129 deletions.
11 changes: 3 additions & 8 deletions Adyen/Model/Checkout/IdealDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,20 +57,15 @@ public enum TypeEnum
/// <summary>
/// Initializes a new instance of the <see cref="IdealDetails" /> class.
/// </summary>
[JsonConstructorAttribute]
protected IdealDetails() { }
/// <summary>
/// Initializes a new instance of the <see cref="IdealDetails" /> class.
/// </summary>
/// <param name="checkoutAttemptId">The checkout attempt identifier..</param>
/// <param name="issuer">The iDEAL issuer value of the shopper&#39;s selected bank. Set this to an **id** of an iDEAL issuer to preselect it. (required).</param>
/// <param name="issuer">The iDEAL issuer value of the shopper&#39;s selected bank. Set this to an **id** of an iDEAL issuer to preselect it..</param>
/// <param name="recurringDetailReference">This is the &#x60;recurringDetailReference&#x60; returned in the response when you created the token..</param>
/// <param name="storedPaymentMethodId">This is the &#x60;recurringDetailReference&#x60; returned in the response when you created the token..</param>
/// <param name="type">**ideal** (default to TypeEnum.Ideal).</param>
public IdealDetails(string checkoutAttemptId = default(string), string issuer = default(string), string recurringDetailReference = default(string), string storedPaymentMethodId = default(string), TypeEnum? type = TypeEnum.Ideal)
{
this.Issuer = issuer;
this.CheckoutAttemptId = checkoutAttemptId;
this.Issuer = issuer;
this.RecurringDetailReference = recurringDetailReference;
this.StoredPaymentMethodId = storedPaymentMethodId;
this.Type = type;
Expand All @@ -87,7 +82,7 @@ protected IdealDetails() { }
/// The iDEAL issuer value of the shopper&#39;s selected bank. Set this to an **id** of an iDEAL issuer to preselect it.
/// </summary>
/// <value>The iDEAL issuer value of the shopper&#39;s selected bank. Set this to an **id** of an iDEAL issuer to preselect it.</value>
[DataMember(Name = "issuer", IsRequired = false, EmitDefaultValue = false)]
[DataMember(Name = "issuer", EmitDefaultValue = false)]
public string Issuer { get; set; }

/// <summary>
Expand Down
11 changes: 3 additions & 8 deletions Adyen/Model/Checkout/IdealDonations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,20 +57,15 @@ public enum TypeEnum
/// <summary>
/// Initializes a new instance of the <see cref="IdealDonations" /> class.
/// </summary>
[JsonConstructorAttribute]
protected IdealDonations() { }
/// <summary>
/// Initializes a new instance of the <see cref="IdealDonations" /> class.
/// </summary>
/// <param name="checkoutAttemptId">The checkout attempt identifier..</param>
/// <param name="issuer">The iDEAL issuer value of the shopper&#39;s selected bank. Set this to an **id** of an iDEAL issuer to preselect it. (required).</param>
/// <param name="issuer">The iDEAL issuer value of the shopper&#39;s selected bank. Set this to an **id** of an iDEAL issuer to preselect it..</param>
/// <param name="recurringDetailReference">This is the &#x60;recurringDetailReference&#x60; returned in the response when you created the token..</param>
/// <param name="storedPaymentMethodId">This is the &#x60;recurringDetailReference&#x60; returned in the response when you created the token..</param>
/// <param name="type">**ideal** (default to TypeEnum.Ideal).</param>
public IdealDonations(string checkoutAttemptId = default(string), string issuer = default(string), string recurringDetailReference = default(string), string storedPaymentMethodId = default(string), TypeEnum? type = TypeEnum.Ideal)
{
this.Issuer = issuer;
this.CheckoutAttemptId = checkoutAttemptId;
this.Issuer = issuer;
this.RecurringDetailReference = recurringDetailReference;
this.StoredPaymentMethodId = storedPaymentMethodId;
this.Type = type;
Expand All @@ -87,7 +82,7 @@ protected IdealDonations() { }
/// The iDEAL issuer value of the shopper&#39;s selected bank. Set this to an **id** of an iDEAL issuer to preselect it.
/// </summary>
/// <value>The iDEAL issuer value of the shopper&#39;s selected bank. Set this to an **id** of an iDEAL issuer to preselect it.</value>
[DataMember(Name = "issuer", IsRequired = false, EmitDefaultValue = false)]
[DataMember(Name = "issuer", EmitDefaultValue = false)]
public string Issuer { get; set; }

/// <summary>
Expand Down
Loading

0 comments on commit bd655a9

Please sign in to comment.