Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetTakeFoodCodeListData ¶
type GetTakeFoodCodeListData struct { /** * 取餐码标签列表 */ TakeFoodCodeList []TakeFoodCodeList `json:"takeFoodCodeList"` }
type GetTakeFoodCodeListRequest ¶
type GetTakeFoodCodeListRequest struct { /** * 订单id */ OrderId int64 `json:"orderId"` }
func (*GetTakeFoodCodeListRequest) DoInvoke ¶
func (req *GetTakeFoodCodeListRequest) DoInvoke(client mtclient.MeituanClient, appAuthToken string) (*GetTakeFoodCodeListResponse, error)
type GetTakeFoodCodeListResponse ¶
type GetTakeFoodCodeListResponse struct { Code string `json:"code"` Msg string `json:"msg"` Data GetTakeFoodCodeListData `json:"data"` TraceId string `json:"traceId"` }
func (*GetTakeFoodCodeListResponse) IsSuccess ¶
func (response *GetTakeFoodCodeListResponse) IsSuccess() bool
type TakeFoodCodeList ¶
type TakeFoodCodeList struct { /** * 取餐码 */ TakeFoodCode string `json:"takeFoodCode"` /** * 识别码 */ IdentCode string `json:"identCode"` /** * 收餐人姓名 */ RecipientName string `json:"recipientName"` /** * 收餐电话 */ RecipientPhone string `json:"recipientPhone"` /** * 菜品名称 */ FoodName string `json:"foodName"` /** * 商家名称 */ PoiName string `json:"poiName"` /** * 收餐地址 */ RecipientAddress string `json:"recipientAddress"` /** * 送达时间 */ EstimatedDeliveryTime string `json:"estimatedDeliveryTime"` }
Click to show internal directories.
Click to hide internal directories.