setMode method
Future<DynamiteResponse<WeatherStatusSetModeResponseApplicationJson, void> >
setMode({
- required WeatherStatusSetModeRequestApplicationJson $body,
- bool? oCSAPIRequest,
Change the weather status mode. There are currently 2 modes: - ask the browser - use the user defined address.
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:
oCSAPIRequest
Required to be true for the API request to pass. Defaults totrue
.
Status codes:
- 200: Weather status mode updated
See:
- $setMode_Request for the request send by this method.
- $setMode_Serializer for a converter to parse the
Response
from an executed request.
Implementation
Future<_i1.DynamiteResponse<WeatherStatusSetModeResponseApplicationJson, void>> setMode({
required WeatherStatusSetModeRequestApplicationJson $body,
bool? oCSAPIRequest,
}) async {
final _request = $setMode_Request(
oCSAPIRequest: oCSAPIRequest,
$body: $body,
);
final _streamedResponse = await _rootClient.httpClient.send(_request);
final _response = await _i3.Response.fromStream(_streamedResponse);
final _serializer = $setMode_Serializer();
return _i1.ResponseConverter<WeatherStatusSetModeResponseApplicationJson, void>(_serializer).convert(_response);
}