Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions com/alipay/api/model/AuthorizationControl.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package model

type AuthorizationControl struct {
CardActiveTime string `json:"cardActiveTime,omitempty"`
CardCancelTime string `json:"cardCancelTime,omitempty"`
AllowedMerchantCategoryList []string `json:"allowedMerchantCategoryList,omitempty"`
AllowedAuthTimes int32 `json:"allowedAuthTimes,omitempty"`
AllowedCurrencies []string `json:"allowedCurrencies,omitempty"`
CardLimitDetail *CardLimitDetail `json:"cardLimitDetail,omitempty"`
CardLimitInfo *CardLimitInfo `json:"cardLimitInfo,omitempty"`
CardActiveTime string `json:"cardActiveTime,omitempty"`
CardCancelTime string `json:"cardCancelTime,omitempty"`
AllowedMerchantCategoryList []string `json:"allowedMerchantCategoryList,omitempty"`
AllowedAuthTimes int32 `json:"allowedAuthTimes,omitempty"`
AllowedCurrencies []string `json:"allowedCurrencies,omitempty"`
CardLimitDetail *CardLimitDetail `json:"cardLimitDetail,omitempty"`
CardLimitInfo *CardLimitInfo `json:"cardLimitInfo,omitempty"`
RefundPreference *RefundPreference `json:"refundPreference,omitempty"`
}
5 changes: 5 additions & 0 deletions com/alipay/api/model/RefundPreference.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package model

type RefundPreference struct {
PreferenceType string `json:"preferenceType,omitempty"`
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ type AlipayInquiryStatementRequest struct {
CurrencyList []string `json:"currencyList,omitempty"`
PageSize int32 `json:"pageSize,omitempty"`
PageNumber int32 `json:"pageNumber,omitempty"`
AssetId string `json:"assetId,omitempty"`
}

func NewAlipayInquiryStatementRequest() (*request.AlipayRequest, *AlipayInquiryStatementRequest) {
Expand Down