1
0
mirror of https://github.com/rclone/rclone.git synced 2025-04-02 20:45:32 +02:00
rclone/backend/yandex/api/files_resource_list.go
2018-01-12 17:07:38 +00:00

9 lines
267 B
Go

package src
// FilesResourceListResponse struct is returned by the API for requests.
type FilesResourceListResponse struct {
Items []ResourceInfoResponse `json:"items"`
Limit *uint64 `json:"limit"`
Offset *uint64 `json:"offset"`
}