Files
baseapi/platformapi/tao_vegetable/sdk/ability3156/domain/AlibabaTclsAelophyMerchantChannelRefundCompletePayChannel.go
邹宗楠 65976332fc 1
2023-06-15 09:08:54 +08:00

23 lines
936 B
Go

package domain
type AlibabaTclsAelophyMerchantChannelRefundCompletePayChannel struct {
/*
支付渠道类型 1.默认 10-支付宝 20-微信支付 30-积分支付 40-储值卡支付 50-银行卡支付。有支付渠道的情况下,必填。 必须是翱象支持的支付渠道,否则报错。 */
PayChannelType *int64 `json:"pay_channel_type,omitempty" `
/*
当前支付渠道的退款金额,单位分。有支付渠道的情况下,必填。 */
RefundFee *int64 `json:"refund_fee,omitempty" `
}
func (s *AlibabaTclsAelophyMerchantChannelRefundCompletePayChannel) SetPayChannelType(v int64) *AlibabaTclsAelophyMerchantChannelRefundCompletePayChannel {
s.PayChannelType = &v
return s
}
func (s *AlibabaTclsAelophyMerchantChannelRefundCompletePayChannel) SetRefundFee(v int64) *AlibabaTclsAelophyMerchantChannelRefundCompletePayChannel {
s.RefundFee = &v
return s
}