24 lines
368 B
Go
24 lines
368 B
Go
|
|
package response
|
||
|
|
|
||
|
|
import (
|
||
|
|
"repository.lenntc.com/lenntc/third-platform-sdk/sdk/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" `
|
||
|
|
}
|