listFiles

expect fun listFiles(storeId: String, skip: Long, limit: Long, sortOrder: String = "desc", lastId: String? = null): PagingList<File>

Gets a list of files in given Store.

Return

list of files

Parameters

storeId

ID of the Store to get files from

skip

skip number of elements to skip from result

limit

limit of elements to return for query

sortOrder

order of elements in result ("asc" for ascending, "desc" for descending)

lastId

ID of the element from which query results should start

Throws

thrown when instance is closed

thrown when method encounters an exception

thrown when method encounters an unknown exception

actual fun listFiles(storeId: String, skip: Long, limit: Long, sortOrder: String, lastId: String?): PagingList<File>

Gets a list of files in given Store.

Return

list of files

Parameters

storeId

ID of the Store to get files from

skip

skip number of elements to skip from result

limit

limit of elements to return for query

sortOrder

order of elements in result ("asc" for ascending, "desc" for descending)

lastId

ID of the element from which query results should start

Throws

thrown when instance is closed

thrown when method encounters an exception

thrown when method encounters an unknown exception

actual external fun listFiles(storeId: String, skip: Long, limit: Long, sortOrder: String, lastId: String?): PagingList<File>

Gets a list of files in given Store.

Return

list of files

Parameters

storeId

ID of the Store to get files from

skip

skip number of elements to skip from result

limit

limit of elements to return for query

sortOrder

order of elements in result ("asc" for ascending, "desc" for descending)

lastId

ID of the element from which query results should start

Throws

thrown when instance is closed

thrown when method encounters an exception

thrown when method encounters an unknown exception