fetch Navigation Item References
abstract fun fetchNavigationItemReferences(options: FetchNavigationItemReferencesOptions, onSuccess: (FetchNavigationItemReferencesResultData) -> Unit, onError: (ColibrioException) -> Unit)
Fetches a collection of navigation item references related with this content location.
If successful, onSuccess will be called with the result. Otherwise, onError is called.
abstract suspend fun fetchNavigationItemReferences(options: FetchNavigationItemReferencesOptions): ColibrioResult<FetchNavigationItemReferencesResultData>
Fetches a collection of navigation item references related with this content location.
Return
Either ColibrioResult.Success containing the result, or ColibrioResult.Error containing the error.