DropboxClientsManager.authorizedClient?.files.getThumbnailBatch(entries: subList).response(queue: DispatchQueue.global(qos: .default), completionHandler: { (dataResponse, error) in
if((dataResponse) != nil)
{
let results = dataResponse?.entries
//print("getThumbnailBatch dataResponse:",results)
results?.forEach { result in
//let descstr = result.description
}
}
})
here "result" is GetThumbnailBatchResultEntry ... that is "ENUM" ..
can anyone help me, how to get the "
"thumbnail" and "metadata" from this ..
result.thumbnail and result.metadata throws the compilation error ...
so how i can access the "thumbnail and "metadata"