Search across property templates for particular property field values. Route attributes: scope: files.metadata.read :param List[:class:`dropbox.file_properties.PropertiesSearchQuery`] queries: Queries to search. :param template_filter: Filte
(self,
queries,
template_filter=file_properties.TemplateFilter.filter_none)
| 318 | return None |
| 319 | |
| 320 | def file_properties_properties_search(self, |
| 321 | queries, |
| 322 | template_filter=file_properties.TemplateFilter.filter_none): |
| 323 | """ |
| 324 | Search across property templates for particular property field values. |
| 325 | |
| 326 | Route attributes: |
| 327 | scope: files.metadata.read |
| 328 | |
| 329 | :param List[:class:`dropbox.file_properties.PropertiesSearchQuery`] |
| 330 | queries: Queries to search. |
| 331 | :param template_filter: Filter results to contain only properties |
| 332 | associated with these template IDs. |
| 333 | :type template_filter: :class:`dropbox.file_properties.TemplateFilter` |
| 334 | :rtype: :class:`dropbox.file_properties.PropertiesSearchResult` |
| 335 | :raises: :class:`.exceptions.ApiError` |
| 336 | |
| 337 | If this raises, ApiError will contain: |
| 338 | :class:`dropbox.file_properties.PropertiesSearchError` |
| 339 | """ |
| 340 | arg = file_properties.PropertiesSearchArg(queries, |
| 341 | template_filter) |
| 342 | r = self.request( |
| 343 | file_properties.properties_search, |
| 344 | 'file_properties', |
| 345 | arg, |
| 346 | None, |
| 347 | ) |
| 348 | return r |
| 349 | |
| 350 | def file_properties_properties_search_continue(self, |
| 351 | cursor): |