Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CommentReplyData ¶
type CommentReplyRequest ¶
type CommentReplyRequest struct { /** * 评论id(由查询评价接口返回) */ FeedbackId int64 `json:"feedbackId"` /** * 评论内容,只支持文字,不支持图片等其他格式 */ Comment string `json:"comment"` }
func (*CommentReplyRequest) DoInvoke ¶
func (req *CommentReplyRequest) DoInvoke(client mtclient.MeituanClient, appAuthToken string) (*CommentReplyResponse, error)
type CommentReplyResponse ¶
type CommentReplyResponse struct { Code string `json:"code"` Msg string `json:"msg"` Data CommentReplyData `json:"data"` TraceId string `json:"traceId"` }
func (*CommentReplyResponse) IsSuccess ¶
func (response *CommentReplyResponse) IsSuccess() bool
Click to show internal directories.
Click to hide internal directories.