mirror of
https://github.com/rclone/rclone.git
synced 2025-02-08 04:20:45 +08: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"`
|
||
|
}
|