getSettingsNavigation method
Future<DynamiteResponse<NavigationGetSettingsNavigationResponseApplicationJson, void> >
getSettingsNavigation({
Get the settings navigation.
Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.
Parameters:
absolute
Rewrite URLs to absolute ones. Defaults to0
.oCSAPIRequest
Required to be true for the API request to pass. Defaults totrue
.
Status codes:
- 200: Apps navigation returned
- 304: No apps navigation changed
See:
- getSettingsNavigationRaw for an experimental operation that returns a DynamiteRawResponse that can be serialized.
Implementation
Future<DynamiteResponse<NavigationGetSettingsNavigationResponseApplicationJson, void>> getSettingsNavigation({
int? absolute,
bool? oCSAPIRequest,
}) async {
final rawResponse = getSettingsNavigationRaw(
absolute: absolute,
oCSAPIRequest: oCSAPIRequest,
);
return rawResponse.future;
}