Skip to content

Commit 57fe2a1

Browse files
authored
Merge pull request #40 from alipay/feature-update-enum
Feature update enum
2 parents fa8f431 + 5d33756 commit 57fe2a1

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CHANGE.log

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,7 @@ adding path to request, using lombok for ams api, update sample code
108108
align antom doc and library
109109

110110
32、Version:2.0.33
111-
add PspCustomerInfo add extendInfo
111+
add PspCustomerInfo add extendInfo
112+
113+
33、Version:2.0.38
114+
add:ScopeType add TAOBAO_REBIND

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ https://mvnrepository.com/artifact/com.alipay.global.sdk/global-open-sdk-java
1212
<dependency>
1313
<groupId>com.alipay.global.sdk</groupId>
1414
<artifactId>global-open-sdk-java</artifactId>
15-
<version>2.0.37</version>
15+
<version>2.0.38</version>
1616
</dependency>
1717
```
1818

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.alipay.global.sdk</groupId>
55
<artifactId>global-open-sdk-java</artifactId>
66
<packaging>jar</packaging>
7-
<version>2.0.37</version>
7+
<version>2.0.38</version>
88
<name>global-open-sdk-java</name>
99
<url>https://github.com/alipay/global-open-sdk-java</url>
1010
<description>

src/main/java/com/alipay/global/api/model/ams/Installment.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
@AllArgsConstructor
1414
public class Installment {
1515

16-
List<SupportCardBrand> supportCardBrands;
16+
private List<SupportCardBrand> supportCardBrands;
1717

18-
List<Plan> plans;
18+
private List<Plan> plans;
1919
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.alipay.global.api.model.ams;
22

33
public enum ScopeType {
4-
BASE_USER_INFO, AGREEMENT_PAY, USER_INFO, USER_LOGIN_ID, HASH_LOGIN_ID, SEND_OTP;
4+
BASE_USER_INFO, AGREEMENT_PAY, USER_INFO, USER_LOGIN_ID, HASH_LOGIN_ID, SEND_OTP, TAOBAO_REBIND;
55
}

0 commit comments

Comments
 (0)