brandSearch

abstract fun brandSearch(brandName: String, options: BrandSearchOptions, executor: Executor, callback: SearchCallback): AsyncOperationTask

Performs a search request for places based on a brand name. This functionality is only supported for a SearchEngine with ApiType.SEARCH_BOX. For other api types callback will be called with UnsupportedOperationException immediately.

This API is available for selected customers only. Contact our sales team to access brand search API.

Return

AsyncOperationTask object representing pending completion of the request.

Parameters

brandName

Name of a brand to search.

options

Brand search options.

executor

Executor used for events dispatching. By default events are dispatched on the main thread.

callback

Search callback to retrieve results.


open fun brandSearch(brandName: String, options: BrandSearchOptions, callback: SearchCallback): AsyncOperationTask

Performs a search request for places based on a brand name. This functionality is only supported for a SearchEngine with ApiType.SEARCH_BOX. For other api types callback will be called with UnsupportedOperationException immediately.

This API is available for selected customers only. Contact our sales team to access brand search API.

Return

AsyncOperationTask object representing pending completion of the request.

Parameters

brandName

Name of a brand to search.

options

Brand search options.

callback

Search callback to retrieve results. Events are dispatched on the main thread.