mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 06:27:11 +08:00
13 lines
428 B
Go
13 lines
428 B
Go
package src
|
|
|
|
// ResourceListResponse struct
|
|
type ResourceListResponse struct {
|
|
Sort *SortMode `json:"sort"`
|
|
PublicKey string `json:"public_key"`
|
|
Items []ResourceInfoResponse `json:"items"`
|
|
Path string `json:"path"`
|
|
Limit *uint64 `json:"limit"`
|
|
Offset *uint64 `json:"offset"`
|
|
Total *uint64 `json:"total"`
|
|
}
|