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

31 lines
886 B
Go

package domain
type AlibabaTclsAelophyMerchantChannelRefundCompleteApiResult struct {
/*
返回码说明 */
ErrMsg *string `json:"err_msg,omitempty" `
/*
返回码 */
ErrCode *string `json:"err_code,omitempty" `
/*
是否成功 */
Success *bool `json:"success,omitempty" `
}
func (s *AlibabaTclsAelophyMerchantChannelRefundCompleteApiResult) SetErrMsg(v string) *AlibabaTclsAelophyMerchantChannelRefundCompleteApiResult {
s.ErrMsg = &v
return s
}
func (s *AlibabaTclsAelophyMerchantChannelRefundCompleteApiResult) SetErrCode(v string) *AlibabaTclsAelophyMerchantChannelRefundCompleteApiResult {
s.ErrCode = &v
return s
}
func (s *AlibabaTclsAelophyMerchantChannelRefundCompleteApiResult) SetSuccess(v bool) *AlibabaTclsAelophyMerchantChannelRefundCompleteApiResult {
s.Success = &v
return s
}