setAccessPointConfig method
Edit the Access Point configuration
Edits the Access Point configuration. If the configuration fails, the entire proccess is rolled back and an error will be returned.
Parameters:
-
AccessPointConfig accessPointConfig (required):
-
String uuidToken: Used for remote connections to device
Implementation
Future<void> setAccessPointConfig(
AccessPointConfig accessPointConfig, {
String? uuidToken,
}) async {
final response = await setAccessPointConfigWithHttpInfo(
accessPointConfig,
uuidToken: uuidToken,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}