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