Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FoodDetectResult ¶
type FoodDetectResult struct {
Detect string `json:"detect"`
}
type NewImageFoodDetRequest ¶
type NewImageFoodDetRequest struct { /** * 图片二进制流,使用Base64编码 图片格式:JPG(JPEG),PNG 图片像素尺寸:最小48*48像素,最大4096*4096像素 图片文件大小:最大 10MB */ Content string `json:"content"` }
func (*NewImageFoodDetRequest) DoInvoke ¶
func (req *NewImageFoodDetRequest) DoInvoke(client mtclient.MeituanClient) (*NewImageFoodDetResponse, error)
type NewImageFoodDetResponse ¶
type NewImageFoodDetResponse struct { Code string `json:"code"` Msg string `json:"msg"` Data FoodDetectResult `json:"data"` TraceId string `json:"traceId"` }
func (*NewImageFoodDetResponse) IsSuccess ¶
func (response *NewImageFoodDetResponse) IsSuccess() bool
Click to show internal directories.
Click to hide internal directories.