Mars Lan 1283dd3ff4
refactor(pdl): convert all pdsc to pdl (#1678)
Use the automated tool in https://linkedin.github.io/rest.li/pdl_migration
Also update all relevant docs
2020-05-21 10:49:23 -07:00

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]
}