topsdk/ability132/response/TaobaoTmcMessagesProduceRes...

28 lines
544 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package response
import (
"git.sunqdl.cn/fgqj/topsdk/ability132/domain"
)
type TaobaoTmcMessagesProduceResponse struct {
/*
System request id
*/
RequestId string `json:"request_id,omitempty" `
/*
System body
*/
Body string
/*
是否全部成功
*/
IsAllSuccess bool `json:"is_all_success,omitempty" `
/*
发送结果与发送时的参数顺序一致。如果is_all_success为true时不用校验result是否成功
*/
Results []domain.TaobaoTmcMessagesProduceTmcProduceResult `json:"results,omitempty" `
}