trialLicensePrevGet method

Future<void> trialLicensePrevGet()

Get last trial license used

Get the last trial license used on the sevrer Minimum server version: 5.36 ##### Permissions Must have manage_systems permissions.

Implementation

Future<void> trialLicensePrevGet() async {
  final response = await trialLicensePrevGetWithHttpInfo();
  if (response.statusCode >= HttpStatus.badRequest) {
    throw MmApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}