24 lines
335 B
Go
24 lines
335 B
Go
package response
|
|
|
|
import (
|
|
"git.sunqdl.cn/fgqj/topsdk/ability304/domain"
|
|
)
|
|
|
|
type TaobaoFilesGetResponse struct {
|
|
|
|
/*
|
|
System request id
|
|
*/
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
/*
|
|
System body
|
|
*/
|
|
Body string
|
|
|
|
/*
|
|
results
|
|
*/
|
|
Results []domain.TaobaoFilesGetTopDownloadRecordDo `json:"results,omitempty" `
|
|
}
|