trialLicensePrevGetWithHttpInfo method

Future<Response> trialLicensePrevGetWithHttpInfo()

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.

Note: This method returns the HTTP Response.

Implementation

Future<Response> trialLicensePrevGetWithHttpInfo() async {
  // ignore: prefer_const_declarations
  final path = r'/trial-license/prev';

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <MmQueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>[];

  return apiClient.invokeAPI(
    path,
    'GET',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}