deleteLicenseWithHttpInfo method

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

Delete a license

Permanently deletes a license. It cannot be undone. This action also immediately deletes any machines that the license is associated with.

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 be deleted.

Implementation

Future<Response> deleteLicenseWithHttpInfo(String account, String license,) async {
  // ignore: prefer_const_declarations
  final path = r'/accounts/{account}/licenses/{license}'
    .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,
    'DELETE',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}