UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

18 lines 977 B
import { SearchResultWithSharedLinkItem } from './searchResultWithSharedLinkItem'; import { SerializedData } from '../serialization/json'; export interface SearchResultWithSharedLink { /** * The optional shared link through which the user has access to this * item. This value is only returned for items for which the user has * recently accessed the file through a shared link. For all other * items this value will return `null`. */ readonly accessibleViaSharedLink?: string; readonly item?: SearchResultWithSharedLinkItem; /** * The result type. The value is always `search_result`. */ readonly type?: string; readonly rawData?: SerializedData; } export declare function serializeSearchResultWithSharedLink(val: SearchResultWithSharedLink): SerializedData; export declare function deserializeSearchResultWithSharedLink(val: SerializedData): SearchResultWithSharedLink; //# sourceMappingURL=searchResultWithSharedLink.d.ts.map