requestLicenseRenewalLink method

Future<MmLicenseRenewalLink?> requestLicenseRenewalLink()

Request the license renewal link

Request the renewal link that would be used to start the license renewal process Minimum server version: 5.32 ##### Permissions Must have sysconsole_write_about permission.

Implementation

Future<MmLicenseRenewalLink?> requestLicenseRenewalLink() async {
  final response = await requestLicenseRenewalLinkWithHttpInfo();
  if (response.statusCode >= HttpStatus.badRequest) {
    throw MmApiException(response.statusCode, await _decodeBodyBytes(response));
  }
  // When a remote server returns no body with a status of 204, we shall not decode it.
  // At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
  // FormatException when trying to decode an empty string.
  if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
    return await apiClient.deserializeAsync(
      await _decodeBodyBytes(response),
      'MmLicenseRenewalLink',
    ) as MmLicenseRenewalLink;
  }
  return null;
}