/** *

Contains the resource id (rid) and the time it took to process the request (timems).

*/ export interface _SuggestStatus { /** *

How long it took to process the request, in milliseconds.

*/ timems?: number; /** *

The encrypted resource ID for the request.

*/ rid?: string; } export declare type _UnmarshalledSuggestStatus = _SuggestStatus;