struct_image.go 680 字节
package aliyun

type CreateUploadImageRequest struct {
	FileName string `json:"fileName"`
	Title    string `json:"title"`
}

type CreateUploadImageResponse struct {
	FileName      string `json:"fileName"` //客户端带上来的/可用于关联
	RequestId     string `json:"requestId"`
	ImageId       string `json:"imageId" `
	ImageURL      string `json:"imageURL"`
	UploadAddress string `json:"uploadAddress"`
	UploadAuth    string `json:"uploadAuth"`
	FileURL       string `json:"fileURL"`
}

type CreateUploadImagesRequest struct {
	Items []*CreateUploadImageRequest `json:"items"`
}

type CreateUploadImagesResponse struct {
	List []*CreateUploadImageResponse `json:"list"`
}