deleteWanConfig method
Reset the WAN to factory settings
Resets WAN configuration to factory settings. A device reboot is required.
Parameters:
- String uuidToken: Used for remote connections to device
Implementation
Future<void> deleteWanConfig({
String? uuidToken,
}) async {
final response = await deleteWanConfigWithHttpInfo(
uuidToken: uuidToken,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}