Function HighlightApiFactory
- HighlightApiFactory(
configuration?: Configuration,
basePath?: string,
axios?: AxiosInstance,
): {
getAllHighlights(
page?: number,
perpage?: number,
options?: any,
): AxiosPromise<GetAllHighlightsResponse>;
getHighlightsInCollection(
collectionId: number,
page?: number,
perpage?: number,
options?: any,
): AxiosPromise<GetHighlightsInCollectionResponse>;
getRaindrop(id: number, options?: any): AxiosPromise<GetRaindropResponse>;
updateRaindrop(
id: number,
body?: object,
options?: any,
): AxiosPromise<UpdateRaindropResponse>;
} getAllHighlights:function
getHighlightsInCollection:function
- getHighlightsInCollection(
collectionId: number,
page?: number,
perpage?: number,
options?: any,
): AxiosPromise<GetHighlightsInCollectionResponse> Parameters
- collectionId: number
Optional
page: numberOptional
perpage: numberOptional
options: any
getRaindrop:function
updateRaindrop:function
HighlightApi - factory interface
Export