mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-29 10:57:52 +00:00
Use the automated tool in https://linkedin.github.io/rest.li/pdl_migration Also update all relevant docs
17 lines
264 B
Plaintext
17 lines
264 B
Plaintext
namespace com.linkedin.metadata.query
|
|
|
|
/**
|
|
* The model for the auto complete result
|
|
*/
|
|
record AutoCompleteResult {
|
|
|
|
/**
|
|
* The original chars typed by user
|
|
*/
|
|
query: string
|
|
|
|
/**
|
|
* A list of typeahead suggestions
|
|
*/
|
|
suggestions: array[string]
|
|
} |