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 Jun 18, 2024
1 parent ac91e3c commit 9f4c202
Show file tree
Hide file tree
Showing 59 changed files with 2,415 additions and 84 deletions.
38 changes: 37 additions & 1 deletion src/main/java/com/adyen/model/checkout/AchDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
AchDetails.JSON_PROPERTY_OWNER_NAME,
AchDetails.JSON_PROPERTY_RECURRING_DETAIL_REFERENCE,
AchDetails.JSON_PROPERTY_STORED_PAYMENT_METHOD_ID,
AchDetails.JSON_PROPERTY_SUBTYPE,
AchDetails.JSON_PROPERTY_TYPE
})

Expand Down Expand Up @@ -117,6 +118,9 @@ public static BankAccountTypeEnum fromValue(String value) {
public static final String JSON_PROPERTY_STORED_PAYMENT_METHOD_ID = "storedPaymentMethodId";
private String storedPaymentMethodId;

public static final String JSON_PROPERTY_SUBTYPE = "subtype";
private String subtype;

/**
* **ach**
*/
Expand Down Expand Up @@ -432,6 +436,36 @@ public void setStoredPaymentMethodId(String storedPaymentMethodId) {
}


public AchDetails subtype(String subtype) {
this.subtype = subtype;
return this;
}

/**
* The payment method subtype.
* @return subtype
**/
@ApiModelProperty(value = "The payment method subtype.")
@JsonProperty(JSON_PROPERTY_SUBTYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

public String getSubtype() {
return subtype;
}


/**
* The payment method subtype.
*
* @param subtype
*/
@JsonProperty(JSON_PROPERTY_SUBTYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSubtype(String subtype) {
this.subtype = subtype;
}


public AchDetails type(TypeEnum type) {
this.type = type;
return this;
Expand Down Expand Up @@ -483,12 +517,13 @@ public boolean equals(Object o) {
Objects.equals(this.ownerName, achDetails.ownerName) &&
Objects.equals(this.recurringDetailReference, achDetails.recurringDetailReference) &&
Objects.equals(this.storedPaymentMethodId, achDetails.storedPaymentMethodId) &&
Objects.equals(this.subtype, achDetails.subtype) &&
Objects.equals(this.type, achDetails.type);
}

@Override
public int hashCode() {
return Objects.hash(bankAccountNumber, bankAccountType, bankLocationId, checkoutAttemptId, encryptedBankAccountNumber, encryptedBankLocationId, ownerName, recurringDetailReference, storedPaymentMethodId, type);
return Objects.hash(bankAccountNumber, bankAccountType, bankLocationId, checkoutAttemptId, encryptedBankAccountNumber, encryptedBankLocationId, ownerName, recurringDetailReference, storedPaymentMethodId, subtype, type);
}

@Override
Expand All @@ -504,6 +539,7 @@ public String toString() {
sb.append(" ownerName: ").append(toIndentedString(ownerName)).append("\n");
sb.append(" recurringDetailReference: ").append(toIndentedString(recurringDetailReference)).append("\n");
sb.append(" storedPaymentMethodId: ").append(toIndentedString(storedPaymentMethodId)).append("\n");
sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append("}");
return sb.toString();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,10 +373,10 @@ public AdditionalDataRiskStandalone bin(String bin) {
}

/**
* The Bank Identification Number of a credit card, which is the first six digits of a card number. Required for [tokenized card request](https://docs.adyen.com/risk-management/standalone-risk#tokenised-pan-request).
* The Bank Identification Number of a credit card, which is the first six digits of a card number. Required for [tokenized card request](https://docs.adyen.com/online-payments/tokenization).
* @return bin
**/
@ApiModelProperty(value = "The Bank Identification Number of a credit card, which is the first six digits of a card number. Required for [tokenized card request](https://docs.adyen.com/risk-management/standalone-risk#tokenised-pan-request).")
@ApiModelProperty(value = "The Bank Identification Number of a credit card, which is the first six digits of a card number. Required for [tokenized card request](https://docs.adyen.com/online-payments/tokenization).")
@JsonProperty(JSON_PROPERTY_BIN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

Expand All @@ -386,7 +386,7 @@ public String getBin() {


/**
* The Bank Identification Number of a credit card, which is the first six digits of a card number. Required for [tokenized card request](https://docs.adyen.com/risk-management/standalone-risk#tokenised-pan-request).
* The Bank Identification Number of a credit card, which is the first six digits of a card number. Required for [tokenized card request](https://docs.adyen.com/online-payments/tokenization).
*
* @param bin
*/
Expand Down
38 changes: 37 additions & 1 deletion src/main/java/com/adyen/model/checkout/AfterpayDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
AfterpayDetails.JSON_PROPERTY_PERSONAL_DETAILS,
AfterpayDetails.JSON_PROPERTY_RECURRING_DETAIL_REFERENCE,
AfterpayDetails.JSON_PROPERTY_STORED_PAYMENT_METHOD_ID,
AfterpayDetails.JSON_PROPERTY_SUBTYPE,
AfterpayDetails.JSON_PROPERTY_TYPE
})

Expand All @@ -60,6 +61,9 @@ public class AfterpayDetails {
public static final String JSON_PROPERTY_STORED_PAYMENT_METHOD_ID = "storedPaymentMethodId";
private String storedPaymentMethodId;

public static final String JSON_PROPERTY_SUBTYPE = "subtype";
private String subtype;

/**
* **afterpay_default**
*/
Expand Down Expand Up @@ -289,6 +293,36 @@ public void setStoredPaymentMethodId(String storedPaymentMethodId) {
}


public AfterpayDetails subtype(String subtype) {
this.subtype = subtype;
return this;
}

/**
* The payment method subtype.
* @return subtype
**/
@ApiModelProperty(value = "The payment method subtype.")
@JsonProperty(JSON_PROPERTY_SUBTYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

public String getSubtype() {
return subtype;
}


/**
* The payment method subtype.
*
* @param subtype
*/
@JsonProperty(JSON_PROPERTY_SUBTYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSubtype(String subtype) {
this.subtype = subtype;
}


public AfterpayDetails type(TypeEnum type) {
this.type = type;
return this;
Expand Down Expand Up @@ -337,12 +371,13 @@ public boolean equals(Object o) {
Objects.equals(this.personalDetails, afterpayDetails.personalDetails) &&
Objects.equals(this.recurringDetailReference, afterpayDetails.recurringDetailReference) &&
Objects.equals(this.storedPaymentMethodId, afterpayDetails.storedPaymentMethodId) &&
Objects.equals(this.subtype, afterpayDetails.subtype) &&
Objects.equals(this.type, afterpayDetails.type);
}

@Override
public int hashCode() {
return Objects.hash(billingAddress, checkoutAttemptId, deliveryAddress, personalDetails, recurringDetailReference, storedPaymentMethodId, type);
return Objects.hash(billingAddress, checkoutAttemptId, deliveryAddress, personalDetails, recurringDetailReference, storedPaymentMethodId, subtype, type);
}

@Override
Expand All @@ -355,6 +390,7 @@ public String toString() {
sb.append(" personalDetails: ").append(toIndentedString(personalDetails)).append("\n");
sb.append(" recurringDetailReference: ").append(toIndentedString(recurringDetailReference)).append("\n");
sb.append(" storedPaymentMethodId: ").append(toIndentedString(storedPaymentMethodId)).append("\n");
sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append("}");
return sb.toString();
Expand Down
38 changes: 37 additions & 1 deletion src/main/java/com/adyen/model/checkout/AmazonPayDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
AmazonPayDetails.JSON_PROPERTY_AMAZON_PAY_TOKEN,
AmazonPayDetails.JSON_PROPERTY_CHECKOUT_ATTEMPT_ID,
AmazonPayDetails.JSON_PROPERTY_CHECKOUT_SESSION_ID,
AmazonPayDetails.JSON_PROPERTY_SUBTYPE,
AmazonPayDetails.JSON_PROPERTY_TYPE
})

Expand All @@ -47,6 +48,9 @@ public class AmazonPayDetails {
public static final String JSON_PROPERTY_CHECKOUT_SESSION_ID = "checkoutSessionId";
private String checkoutSessionId;

public static final String JSON_PROPERTY_SUBTYPE = "subtype";
private String subtype;

/**
* **amazonpay**
*/
Expand Down Expand Up @@ -176,6 +180,36 @@ public void setCheckoutSessionId(String checkoutSessionId) {
}


public AmazonPayDetails subtype(String subtype) {
this.subtype = subtype;
return this;
}

/**
* The payment method subtype.
* @return subtype
**/
@ApiModelProperty(value = "The payment method subtype.")
@JsonProperty(JSON_PROPERTY_SUBTYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

public String getSubtype() {
return subtype;
}


/**
* The payment method subtype.
*
* @param subtype
*/
@JsonProperty(JSON_PROPERTY_SUBTYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSubtype(String subtype) {
this.subtype = subtype;
}


public AmazonPayDetails type(TypeEnum type) {
this.type = type;
return this;
Expand Down Expand Up @@ -221,12 +255,13 @@ public boolean equals(Object o) {
return Objects.equals(this.amazonPayToken, amazonPayDetails.amazonPayToken) &&
Objects.equals(this.checkoutAttemptId, amazonPayDetails.checkoutAttemptId) &&
Objects.equals(this.checkoutSessionId, amazonPayDetails.checkoutSessionId) &&
Objects.equals(this.subtype, amazonPayDetails.subtype) &&
Objects.equals(this.type, amazonPayDetails.type);
}

@Override
public int hashCode() {
return Objects.hash(amazonPayToken, checkoutAttemptId, checkoutSessionId, type);
return Objects.hash(amazonPayToken, checkoutAttemptId, checkoutSessionId, subtype, type);
}

@Override
Expand All @@ -236,6 +271,7 @@ public String toString() {
sb.append(" amazonPayToken: ").append(toIndentedString(amazonPayToken)).append("\n");
sb.append(" checkoutAttemptId: ").append(toIndentedString(checkoutAttemptId)).append("\n");
sb.append(" checkoutSessionId: ").append(toIndentedString(checkoutSessionId)).append("\n");
sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append("}");
return sb.toString();
Expand Down
38 changes: 37 additions & 1 deletion src/main/java/com/adyen/model/checkout/AncvDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
AncvDetails.JSON_PROPERTY_CHECKOUT_ATTEMPT_ID,
AncvDetails.JSON_PROPERTY_RECURRING_DETAIL_REFERENCE,
AncvDetails.JSON_PROPERTY_STORED_PAYMENT_METHOD_ID,
AncvDetails.JSON_PROPERTY_SUBTYPE,
AncvDetails.JSON_PROPERTY_TYPE
})

Expand All @@ -52,6 +53,9 @@ public class AncvDetails {
public static final String JSON_PROPERTY_STORED_PAYMENT_METHOD_ID = "storedPaymentMethodId";
private String storedPaymentMethodId;

public static final String JSON_PROPERTY_SUBTYPE = "subtype";
private String subtype;

/**
* **ancv**
*/
Expand Down Expand Up @@ -215,6 +219,36 @@ public void setStoredPaymentMethodId(String storedPaymentMethodId) {
}


public AncvDetails subtype(String subtype) {
this.subtype = subtype;
return this;
}

/**
* The payment method subtype.
* @return subtype
**/
@ApiModelProperty(value = "The payment method subtype.")
@JsonProperty(JSON_PROPERTY_SUBTYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

public String getSubtype() {
return subtype;
}


/**
* The payment method subtype.
*
* @param subtype
*/
@JsonProperty(JSON_PROPERTY_SUBTYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSubtype(String subtype) {
this.subtype = subtype;
}


public AncvDetails type(TypeEnum type) {
this.type = type;
return this;
Expand Down Expand Up @@ -261,12 +295,13 @@ public boolean equals(Object o) {
Objects.equals(this.checkoutAttemptId, ancvDetails.checkoutAttemptId) &&
Objects.equals(this.recurringDetailReference, ancvDetails.recurringDetailReference) &&
Objects.equals(this.storedPaymentMethodId, ancvDetails.storedPaymentMethodId) &&
Objects.equals(this.subtype, ancvDetails.subtype) &&
Objects.equals(this.type, ancvDetails.type);
}

@Override
public int hashCode() {
return Objects.hash(beneficiaryId, checkoutAttemptId, recurringDetailReference, storedPaymentMethodId, type);
return Objects.hash(beneficiaryId, checkoutAttemptId, recurringDetailReference, storedPaymentMethodId, subtype, type);
}

@Override
Expand All @@ -277,6 +312,7 @@ public String toString() {
sb.append(" checkoutAttemptId: ").append(toIndentedString(checkoutAttemptId)).append("\n");
sb.append(" recurringDetailReference: ").append(toIndentedString(recurringDetailReference)).append("\n");
sb.append(" storedPaymentMethodId: ").append(toIndentedString(storedPaymentMethodId)).append("\n");
sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append("}");
return sb.toString();
Expand Down
Loading

0 comments on commit 9f4c202

Please sign in to comment.