Interface IGetRelatedItemsResponseFull

Extension of type to represent actual return from portal function getRelatedItems.

interface IGetRelatedItemsResponseFull {
    aggregations: IGetRelatedItemsResponseAggregation;
    nextkey: string;
    num: number;
    relatedItems: IItem[];
    total: number;
}

Hierarchy (view full)

Properties

aggregations: IGetRelatedItemsResponseAggregation

Undocumented property returned by portal function getRelatedItems.

nextkey: string

Property used in conjunction with start to request the next batch of related items.

num: number

Echo of number of related items requested.

relatedItems: IItem[]
total: number