Skip to content

Commit

Permalink
[create-pull-request] automated change
Browse files Browse the repository at this point in the history
  • Loading branch information
AdyenAutomationBot committed Jul 11, 2023
1 parent 0d14bba commit 1cdee19
Show file tree
Hide file tree
Showing 441 changed files with 7,612 additions and 1,465 deletions.
8 changes: 4 additions & 4 deletions Adyen/Model/BalancePlatform/AccountHolderCapability.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public bool ShouldSerializeVerificationStatus()
/// <param name="requestedLevel">The requested level of the capability. Some capabilities, such as those used in [card issuing](https://docs.adyen.com/issuing/add-capabilities#capability-levels), have different levels. Levels increase the capability, but also require additional checks and increased monitoring. Possible values: **notApplicable**, **low**, **medium**, **high**..</param>
/// <param name="requestedSettings">requestedSettings.</param>
/// <param name="transferInstruments">Contains the status of the transfer instruments associated with this capability. .</param>
public AccountHolderCapability(CapabilitySettings allowedSettings = default(CapabilitySettings), bool enabled = default(bool), bool requested = default(bool), RequestedLevelEnum? requestedLevel = default(RequestedLevelEnum?), CapabilitySettings requestedSettings = default(CapabilitySettings), List<AccountSupportingEntityCapability> transferInstruments = default(List<AccountSupportingEntityCapability>))
public AccountHolderCapability(CapabilitySettings allowedSettings = default(CapabilitySettings), bool? enabled = default(bool?), bool? requested = default(bool?), RequestedLevelEnum? requestedLevel = default(RequestedLevelEnum?), CapabilitySettings requestedSettings = default(CapabilitySettings), List<AccountSupportingEntityCapability> transferInstruments = default(List<AccountSupportingEntityCapability>))
{
this.AllowedSettings = allowedSettings;
this.Enabled = enabled;
Expand All @@ -195,7 +195,7 @@ public bool ShouldSerializeVerificationStatus()
/// </summary>
/// <value>Indicates whether the capability is allowed. Adyen sets this to **true** if the verification is successful and the account holder is permitted to use the capability.</value>
[DataMember(Name = "allowed", EmitDefaultValue = false)]
public bool Allowed { get; private set; }
public bool? Allowed { get; private set; }

/// <summary>
/// Gets or Sets AllowedSettings
Expand All @@ -208,7 +208,7 @@ public bool ShouldSerializeVerificationStatus()
/// </summary>
/// <value>Indicates whether the capability is enabled. If **false**, the capability is temporarily disabled for the account holder.</value>
[DataMember(Name = "enabled", EmitDefaultValue = false)]
public bool Enabled { get; set; }
public bool? Enabled { get; set; }

/// <summary>
/// Contains verification errors and the actions that you can take to resolve them.
Expand All @@ -222,7 +222,7 @@ public bool ShouldSerializeVerificationStatus()
/// </summary>
/// <value>Indicates whether the capability is requested. To check whether the account holder is permitted to use the capability, refer to the &#x60;allowed&#x60; field.</value>
[DataMember(Name = "requested", EmitDefaultValue = false)]
public bool Requested { get; set; }
public bool? Requested { get; set; }

/// <summary>
/// Gets or Sets RequestedSettings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public bool ShouldSerializeVerificationStatus()
/// <param name="enabled">Indicates whether the capability is enabled. If **false**, the capability is temporarily disabled for the account holder..</param>
/// <param name="requested">Indicates whether the capability is requested. To check whether the account holder is permitted to use the capability, refer to the &#x60;allowed&#x60; field..</param>
/// <param name="requestedLevel">The requested level of the capability. Some capabilities, such as those used in [card issuing](https://docs.adyen.com/issuing/add-capabilities#capability-levels), have different levels. Levels increase the capability, but also require additional checks and increased monitoring. Possible values: **notApplicable**, **low**, **medium**, **high**..</param>
public AccountSupportingEntityCapability(bool enabled = default(bool), bool requested = default(bool), RequestedLevelEnum? requestedLevel = default(RequestedLevelEnum?))
public AccountSupportingEntityCapability(bool? enabled = default(bool?), bool? requested = default(bool?), RequestedLevelEnum? requestedLevel = default(RequestedLevelEnum?))
{
this.Enabled = enabled;
this.Requested = requested;
Expand All @@ -189,14 +189,14 @@ public bool ShouldSerializeVerificationStatus()
/// </summary>
/// <value>Indicates whether the supporting entity capability is allowed. Adyen sets this to **true** if the verification is successful and the account holder is permitted to use the capability.</value>
[DataMember(Name = "allowed", EmitDefaultValue = false)]
public bool Allowed { get; private set; }
public bool? Allowed { get; private set; }

/// <summary>
/// Indicates whether the capability is enabled. If **false**, the capability is temporarily disabled for the account holder.
/// </summary>
/// <value>Indicates whether the capability is enabled. If **false**, the capability is temporarily disabled for the account holder.</value>
[DataMember(Name = "enabled", EmitDefaultValue = false)]
public bool Enabled { get; set; }
public bool? Enabled { get; set; }

/// <summary>
/// The ID of the supporting entity.
Expand All @@ -210,7 +210,7 @@ public bool ShouldSerializeVerificationStatus()
/// </summary>
/// <value>Indicates whether the capability is requested. To check whether the account holder is permitted to use the capability, refer to the &#x60;allowed&#x60; field.</value>
[DataMember(Name = "requested", EmitDefaultValue = false)]
public bool Requested { get; set; }
public bool? Requested { get; set; }

/// <summary>
/// Returns the string presentation of the object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected BalanceSweepConfigurationsResponse() { }
/// <param name="hasNext">Indicates whether there are more items on the next page. (required).</param>
/// <param name="hasPrevious">Indicates whether there are more items on the previous page. (required).</param>
/// <param name="sweeps">List of sweeps associated with the balance account. (required).</param>
public BalanceSweepConfigurationsResponse(bool hasNext = default(bool), bool hasPrevious = default(bool), List<SweepConfigurationV2> sweeps = default(List<SweepConfigurationV2>))
public BalanceSweepConfigurationsResponse(bool? hasNext = default(bool?), bool? hasPrevious = default(bool?), List<SweepConfigurationV2> sweeps = default(List<SweepConfigurationV2>))
{
this.HasNext = hasNext;
this.HasPrevious = hasPrevious;
Expand All @@ -56,14 +56,14 @@ protected BalanceSweepConfigurationsResponse() { }
/// </summary>
/// <value>Indicates whether there are more items on the next page.</value>
[DataMember(Name = "hasNext", IsRequired = false, EmitDefaultValue = false)]
public bool HasNext { get; set; }
public bool? HasNext { get; set; }

/// <summary>
/// Indicates whether there are more items on the previous page.
/// </summary>
/// <value>Indicates whether there are more items on the previous page.</value>
[DataMember(Name = "hasPrevious", IsRequired = false, EmitDefaultValue = false)]
public bool HasPrevious { get; set; }
public bool? HasPrevious { get; set; }

/// <summary>
/// List of sweeps associated with the balance account.
Expand Down
4 changes: 2 additions & 2 deletions Adyen/Model/BalancePlatform/CapabilitySettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public enum IntervalEnum
/// <param name="fundingSource">fundingSource.</param>
/// <param name="interval">interval.</param>
/// <param name="maxAmount">maxAmount.</param>
public CapabilitySettings(Dictionary<string, Amount> amountPerIndustry = default(Dictionary<string, Amount>), bool authorizedCardUsers = default(bool), List<FundingSourceEnum> fundingSource = default(List<FundingSourceEnum>), IntervalEnum? interval = default(IntervalEnum?), Amount maxAmount = default(Amount))
public CapabilitySettings(Dictionary<string, Amount> amountPerIndustry = default(Dictionary<string, Amount>), bool? authorizedCardUsers = default(bool?), List<FundingSourceEnum> fundingSource = default(List<FundingSourceEnum>), IntervalEnum? interval = default(IntervalEnum?), Amount maxAmount = default(Amount))
{
this.AmountPerIndustry = amountPerIndustry;
this.AuthorizedCardUsers = authorizedCardUsers;
Expand All @@ -118,7 +118,7 @@ public enum IntervalEnum
/// Gets or Sets AuthorizedCardUsers
/// </summary>
[DataMember(Name = "authorizedCardUsers", EmitDefaultValue = false)]
public bool AuthorizedCardUsers { get; set; }
public bool? AuthorizedCardUsers { get; set; }

/// <summary>
/// Gets or Sets FundingSource
Expand Down
4 changes: 2 additions & 2 deletions Adyen/Model/BalancePlatform/DifferentCurrenciesRestriction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected DifferentCurrenciesRestriction() { }
/// </summary>
/// <param name="operation">Defines how the condition must be evaluated. (required).</param>
/// <param name="value">Checks the currency of the payment against the currency of the payment instrument. Possible values: - **true**: The currency of the payment is different from the currency of the payment instrument. - **false**: The currencies are the same. .</param>
public DifferentCurrenciesRestriction(string operation = default(string), bool value = default(bool))
public DifferentCurrenciesRestriction(string operation = default(string), bool? value = default(bool?))
{
this.Operation = operation;
this.Value = value;
Expand All @@ -61,7 +61,7 @@ protected DifferentCurrenciesRestriction() { }
/// </summary>
/// <value>Checks the currency of the payment against the currency of the payment instrument. Possible values: - **true**: The currency of the payment is different from the currency of the payment instrument. - **false**: The currencies are the same. </value>
[DataMember(Name = "value", EmitDefaultValue = false)]
public bool Value { get; set; }
public bool? Value { get; set; }

/// <summary>
/// Returns the string presentation of the object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected InternationalTransactionRestriction() { }
/// </summary>
/// <param name="operation">Defines how the condition must be evaluated. (required).</param>
/// <param name="value">Boolean indicating whether transaction is an international transaction. Possible values: - **true**: The transaction is an international transaction. - **false**: The transaction is a domestic transaction. .</param>
public InternationalTransactionRestriction(string operation = default(string), bool value = default(bool))
public InternationalTransactionRestriction(string operation = default(string), bool? value = default(bool?))
{
this.Operation = operation;
this.Value = value;
Expand All @@ -61,7 +61,7 @@ protected InternationalTransactionRestriction() { }
/// </summary>
/// <value>Boolean indicating whether transaction is an international transaction. Possible values: - **true**: The transaction is an international transaction. - **false**: The transaction is a domestic transaction. </value>
[DataMember(Name = "value", EmitDefaultValue = false)]
public bool Value { get; set; }
public bool? Value { get; set; }

/// <summary>
/// Returns the string presentation of the object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected PaginatedAccountHoldersResponse() { }
/// <param name="accountHolders">List of account holders. (required).</param>
/// <param name="hasNext">Indicates whether there are more items on the next page. (required).</param>
/// <param name="hasPrevious">Indicates whether there are more items on the previous page. (required).</param>
public PaginatedAccountHoldersResponse(List<AccountHolder> accountHolders = default(List<AccountHolder>), bool hasNext = default(bool), bool hasPrevious = default(bool))
public PaginatedAccountHoldersResponse(List<AccountHolder> accountHolders = default(List<AccountHolder>), bool? hasNext = default(bool?), bool? hasPrevious = default(bool?))
{
this.AccountHolders = accountHolders;
this.HasNext = hasNext;
Expand All @@ -63,14 +63,14 @@ protected PaginatedAccountHoldersResponse() { }
/// </summary>
/// <value>Indicates whether there are more items on the next page.</value>
[DataMember(Name = "hasNext", IsRequired = false, EmitDefaultValue = false)]
public bool HasNext { get; set; }
public bool? HasNext { get; set; }

/// <summary>
/// Indicates whether there are more items on the previous page.
/// </summary>
/// <value>Indicates whether there are more items on the previous page.</value>
[DataMember(Name = "hasPrevious", IsRequired = false, EmitDefaultValue = false)]
public bool HasPrevious { get; set; }
public bool? HasPrevious { get; set; }

/// <summary>
/// Returns the string presentation of the object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected PaginatedBalanceAccountsResponse() { }
/// <param name="balanceAccounts">List of balance accounts. (required).</param>
/// <param name="hasNext">Indicates whether there are more items on the next page. (required).</param>
/// <param name="hasPrevious">Indicates whether there are more items on the previous page. (required).</param>
public PaginatedBalanceAccountsResponse(List<BalanceAccountBase> balanceAccounts = default(List<BalanceAccountBase>), bool hasNext = default(bool), bool hasPrevious = default(bool))
public PaginatedBalanceAccountsResponse(List<BalanceAccountBase> balanceAccounts = default(List<BalanceAccountBase>), bool? hasNext = default(bool?), bool? hasPrevious = default(bool?))
{
this.BalanceAccounts = balanceAccounts;
this.HasNext = hasNext;
Expand All @@ -63,14 +63,14 @@ protected PaginatedBalanceAccountsResponse() { }
/// </summary>
/// <value>Indicates whether there are more items on the next page.</value>
[DataMember(Name = "hasNext", IsRequired = false, EmitDefaultValue = false)]
public bool HasNext { get; set; }
public bool? HasNext { get; set; }

/// <summary>
/// Indicates whether there are more items on the previous page.
/// </summary>
/// <value>Indicates whether there are more items on the previous page.</value>
[DataMember(Name = "hasPrevious", IsRequired = false, EmitDefaultValue = false)]
public bool HasPrevious { get; set; }
public bool? HasPrevious { get; set; }

/// <summary>
/// Returns the string presentation of the object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected PaginatedPaymentInstrumentsResponse() { }
/// <param name="hasNext">Indicates whether there are more items on the next page. (required).</param>
/// <param name="hasPrevious">Indicates whether there are more items on the previous page. (required).</param>
/// <param name="paymentInstruments">List of payment instruments associated with the balance account. (required).</param>
public PaginatedPaymentInstrumentsResponse(bool hasNext = default(bool), bool hasPrevious = default(bool), List<PaymentInstrument> paymentInstruments = default(List<PaymentInstrument>))
public PaginatedPaymentInstrumentsResponse(bool? hasNext = default(bool?), bool? hasPrevious = default(bool?), List<PaymentInstrument> paymentInstruments = default(List<PaymentInstrument>))
{
this.HasNext = hasNext;
this.HasPrevious = hasPrevious;
Expand All @@ -56,14 +56,14 @@ protected PaginatedPaymentInstrumentsResponse() { }
/// </summary>
/// <value>Indicates whether there are more items on the next page.</value>
[DataMember(Name = "hasNext", IsRequired = false, EmitDefaultValue = false)]
public bool HasNext { get; set; }
public bool? HasNext { get; set; }

/// <summary>
/// Indicates whether there are more items on the previous page.
/// </summary>
/// <value>Indicates whether there are more items on the previous page.</value>
[DataMember(Name = "hasPrevious", IsRequired = false, EmitDefaultValue = false)]
public bool HasPrevious { get; set; }
public bool? HasPrevious { get; set; }

/// <summary>
/// List of payment instruments associated with the balance account.
Expand Down
4 changes: 2 additions & 2 deletions Adyen/Model/BinLookup/CardBin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public partial class CardBin : IEquatable<CardBin>, IValidatableObject
/// <param name="paymentMethod">The payment method associated with the card (e.g. visa, mc, or amex)..</param>
/// <param name="payoutEligible">Indicates whether a payout is eligible or not for this card. Visa: * \&quot;Y\&quot; * \&quot;N\&quot; Mastercard: * \&quot;Y\&quot; (domestic and cross-border) * \&quot;D\&quot; (only domestic) * \&quot;N\&quot; (no MoneySend) * \&quot;U\&quot; (unknown) &gt; Returned when you verify a card BIN or estimate costs, and only if &#x60;payoutEligible&#x60; is different from \&quot;N\&quot; or \&quot;U\&quot;..</param>
/// <param name="summary">The last four digits of the card number..</param>
public CardBin(string bin = default(string), bool commercial = default(bool), string fundingSource = default(string), string fundsAvailability = default(string), string issuerBin = default(string), string issuingBank = default(string), string issuingCountry = default(string), string issuingCurrency = default(string), string paymentMethod = default(string), string payoutEligible = default(string), string summary = default(string))
public CardBin(string bin = default(string), bool? commercial = default(bool?), string fundingSource = default(string), string fundsAvailability = default(string), string issuerBin = default(string), string issuingBank = default(string), string issuingCountry = default(string), string issuingCurrency = default(string), string paymentMethod = default(string), string payoutEligible = default(string), string summary = default(string))
{
this.Bin = bin;
this.Commercial = commercial;
Expand All @@ -74,7 +74,7 @@ public partial class CardBin : IEquatable<CardBin>, IValidatableObject
/// </summary>
/// <value>If true, it indicates a commercial card. Enable this field via merchant account settings.</value>
[DataMember(Name = "commercial", EmitDefaultValue = false)]
public bool Commercial { get; set; }
public bool? Commercial { get; set; }

/// <summary>
/// The card funding source. Valid values are: * CHARGE * CREDIT * DEBIT * DEFERRED_DEBIT * PREPAID * PREPAID_RELOADABLE * PREPAID_NONRELOADABLE &gt; Enable this field via merchant account settings.
Expand Down
Loading

0 comments on commit 1cdee19

Please sign in to comment.