retrieveEntitlementWithHttpInfo method

Future<Response> retrieveEntitlementWithHttpInfo(
  1. String account,
  2. String entitlement
)

Retrieve an entitlement

Retrieves the details of an existing entitlement.

Note: This method returns the HTTP Response.

Parameters:

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

  • String entitlement (required): The identifier (UUID) of the entitlement to be retrieved.

Implementation

Future<Response> retrieveEntitlementWithHttpInfo(String account, String entitlement,) async {
  // ignore: prefer_const_declarations
  final path = r'/accounts/{account}/entitlements/{entitlement}'
    .replaceAll('{account}', account)
    .replaceAll('{entitlement}', entitlement);

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <QueryParam>[];
  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,
  );
}