setAccessPointConfig method

Future<void> setAccessPointConfig(
  1. AccessPointConfig accessPointConfig, {
  2. String? uuidToken,
})

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:

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));
  }
}