Skip to content

Commit 9649930

Browse files
authored
Merge pull request #86 from alipay/sdk-automation/20260427-0728
Update all services
2 parents e7621c4 + 7de0be9 commit 9649930

4 files changed

Lines changed: 15 additions & 7 deletions

File tree

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
package model
22

33
type AuthorizationControl struct {
4-
CardActiveTime string `json:"cardActiveTime,omitempty"`
5-
CardCancelTime string `json:"cardCancelTime,omitempty"`
6-
AllowedMerchantCategoryList []string `json:"allowedMerchantCategoryList,omitempty"`
7-
AllowedAuthTimes int32 `json:"allowedAuthTimes,omitempty"`
8-
AllowedCurrencies []string `json:"allowedCurrencies,omitempty"`
9-
CardLimitDetail *CardLimitDetail `json:"cardLimitDetail,omitempty"`
10-
CardLimitInfo *CardLimitInfo `json:"cardLimitInfo,omitempty"`
4+
CardActiveTime string `json:"cardActiveTime,omitempty"`
5+
CardCancelTime string `json:"cardCancelTime,omitempty"`
6+
AllowedMerchantCategoryList []string `json:"allowedMerchantCategoryList,omitempty"`
7+
AllowedAuthTimes int32 `json:"allowedAuthTimes,omitempty"`
8+
AllowedCurrencies []string `json:"allowedCurrencies,omitempty"`
9+
CardLimitDetail *CardLimitDetail `json:"cardLimitDetail,omitempty"`
10+
CardLimitInfo *CardLimitInfo `json:"cardLimitInfo,omitempty"`
11+
RefundPreference *RefundPreference `json:"refundPreference,omitempty"`
1112
}

com/alipay/api/model/CreditPayPlan.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ type CreditPayPlan struct {
55
Interval string `json:"interval,omitempty"`
66
CreditPayFeeType CreditPayFeeType `json:"creditPayFeeType,omitempty"`
77
FeePercentage int32 `json:"feePercentage,omitempty"`
8+
InterestRate string `json:"interestRate,omitempty"`
89
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package model
2+
3+
type RefundPreference struct {
4+
PreferenceType string `json:"preferenceType,omitempty"`
5+
}

com/alipay/api/request/aba/AlipayInquiryStatementRequest.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ type AlipayInquiryStatementRequest struct {
1414
CurrencyList []string `json:"currencyList,omitempty"`
1515
PageSize int32 `json:"pageSize,omitempty"`
1616
PageNumber int32 `json:"pageNumber,omitempty"`
17+
AssetId string `json:"assetId,omitempty"`
1718
}
1819

1920
func NewAlipayInquiryStatementRequest() (*request.AlipayRequest, *AlipayInquiryStatementRequest) {

0 commit comments

Comments
 (0)