File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11package model
22
33type 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}
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 1+ package model
2+
3+ type RefundPreference struct {
4+ PreferenceType string `json:"preferenceType,omitempty"`
5+ }
Original file line number Diff line number Diff 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
1920func NewAlipayInquiryStatementRequest () (* request.AlipayRequest , * AlipayInquiryStatementRequest ) {
You can’t perform that action at this time.
0 commit comments