mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
9 lines
267 B
Go
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"`
|
|
}
|