From 941c953e70ee1ad2216f20f42fb9b7bdb553d2e1 Mon Sep 17 00:00:00 2001 From: Wang Zunjiao Date: Mon, 29 Jun 2026 08:59:08 +0000 Subject: [PATCH] false[antom-sdk-automation] automated change --- .../api/model/ams/CustomerBelongsTo.java | 2 +- .../ams/pay/AlipayVaultingQueryResponse.java | 26 +++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/alipay/global/api/model/ams/CustomerBelongsTo.java b/src/main/java/com/alipay/global/api/model/ams/CustomerBelongsTo.java index 1cdef30..1d9e708 100644 --- a/src/main/java/com/alipay/global/api/model/ams/CustomerBelongsTo.java +++ b/src/main/java/com/alipay/global/api/model/ams/CustomerBelongsTo.java @@ -76,7 +76,7 @@ public enum CustomerBelongsTo { DIRECTDEBIT_YAPILY("DIRECTDEBIT_YAPILY"), - ANTIM_BIZ_ACCOUNT("ANTIM_BIZ_ACCOUNT"); + ANTOM_BIZ_ACCOUNT("ANTOM_BIZ_ACCOUNT"); private String value; diff --git a/src/main/java/com/alipay/global/api/response/ams/pay/AlipayVaultingQueryResponse.java b/src/main/java/com/alipay/global/api/response/ams/pay/AlipayVaultingQueryResponse.java index f5e909b..652e1a2 100644 --- a/src/main/java/com/alipay/global/api/response/ams/pay/AlipayVaultingQueryResponse.java +++ b/src/main/java/com/alipay/global/api/response/ams/pay/AlipayVaultingQueryResponse.java @@ -67,4 +67,30 @@ public class AlipayVaultingQueryResponse extends AlipayResponse { /** Metadata for custom data transmission */ private String metadata; + + /** + * The vaulting result code, corresponding to vaultingStatus. When vaultingStatus is SUCCESS, the + * value is SUCCESS. When vaultingStatus is PROCESSING, the value is VERIFICATION_IN_PROCESS. When + * vaultingStatus is FAIL, the value is a specific error code returned by the card scheme, issuing + * bank, or acquirer; when the channel error cannot be mapped, the value is PROCESS_FAIL. Note: + * This parameter is returned when the value of result.resultStatus is S. Possible values when + * vaultingStatus is FAIL include: ACCESS_DENIED, ACCOUNT_CLOSED, AUTHENTICATION_REQUIRED, + * BLOCKED_FIRST_USED, CARD_EXPIRED, CARD_NOT_SUPPORTED, DO_NOT_HONOR, FRAUD_REJECT, + * INVALID_CARD_NUMBER, INVALID_CVV, INVALID_EXPIRATION_DATE, LOST_CARD, NO_SELECTED_ACCOUNT, + * ORDER_IS_CLOSED, PAYMENT_AMOUNT_EXCEED_LIMIT, PAYMENT_COUNT_EXCEED_LIMIT, PICKUP_CARD, POLICY, + * PROCESS_FAIL, RESTRICTED_CARD, STOLEN_CARD, USER_BALANCE_NOT_ENOUGH, + * USER_PAYMENT_VERIFICATION_FAILED, VERIFY_TIMES_EXCEED_LIMIT. Additional values may be added in + * the future as channel capabilities evolve. More information: Maximum length: 64 characters + */ + private String vaultingResultCode; + + /** + * The readable description of vaultingResultCode. When vaultingResultCode is SUCCESS, the value + * is \"success.\". When vaultingResultCode is VERIFICATION_IN_PROCESS, the value is + * \"The verification is still under process.\". When vaultingStatus is FAIL, the value + * is the specific error description corresponding to vaultingResultCode. Note: This parameter is + * returned when the value of result.resultStatus is S. More information: Maximum length: 256 + * characters + */ + private String vaultingResultMessage; }