public static interface FilesService.ListRequest extends Request<FilesService.ListRequest,FilesService.ListResponse>
Modifier and Type | Method and Description |
---|---|
FilesService.ListRequest |
caseSensitive(Boolean caseSensitive)
Indicates if the search performed using the
search parameter should be performed taking case into
account. |
FilesService.ListRequest |
max(BigInteger max)
Sets the maximum number of files to return.
|
FilesService.ListRequest |
max(Integer max)
Sets the maximum number of files to return.
|
FilesService.ListRequest |
max(Long max)
Sets the maximum number of files to return.
|
FilesService.ListRequest |
search(String search)
A query string used to restrict the returned files.
|
FilesService.ListRequest caseSensitive(Boolean caseSensitive)
Indicates if the search performed using the search
parameter should be performed taking case into
account. The default value is true
, which means that case is taken into account. If you want to search
ignoring case set it to false
.
FilesService.ListRequest max(Integer max)
Sets the maximum number of files to return. If not specified all the files are returned.
FilesService.ListRequest max(Long max)
Sets the maximum number of files to return. If not specified all the files are returned.
FilesService.ListRequest max(BigInteger max)
Sets the maximum number of files to return. If not specified all the files are returned.
FilesService.ListRequest search(String search)
A query string used to restrict the returned files.
Copyright © 2016. All rights reserved.