reinstateLicenseWithHttpInfo method

Future<Response> reinstateLicenseWithHttpInfo(
  1. String account,
  2. String license
)

Reinstate a license

Action to reinstate a suspended license.

Note: This method returns the HTTP Response.

Parameters:

  • String account (required): The identifier (UUID) or slug of your Keygen account.

  • String license (required): The identifier (UUID) or URL-safe key of the license to reinstate. key.

Implementation

Future<Response> reinstateLicenseWithHttpInfo(String account, String license,) async {
  // ignore: prefer_const_declarations
  final path = r'/accounts/{account}/licenses/{license}/actions/reinstate'
    .replaceAll('{account}', account)
    .replaceAll('{license}', license);

  // ignore: prefer_final_locals
  Object? postBody;

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

  const contentTypes = <String>[];


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