requestTrialLicenseWithHttpInfo method
Future<Response>
requestTrialLicenseWithHttpInfo(
- MmRequestTrialLicenseRequest mmRequestTrialLicenseRequest
Request and install a trial license for your server
Request and install a trial license for your server Minimum server version: 5.25 ##### Permissions Must have manage_system
permission.
Note: This method returns the HTTP Response
.
Parameters:
- MmRequestTrialLicenseRequest mmRequestTrialLicenseRequest (required): License request
Implementation
Future<Response> requestTrialLicenseWithHttpInfo(
MmRequestTrialLicenseRequest mmRequestTrialLicenseRequest,
) async {
// ignore: prefer_const_declarations
final path = r'/trial-license';
// ignore: prefer_final_locals
Object? postBody = mmRequestTrialLicenseRequest;
final queryParams = <MmQueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'POST',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}