listCodesByRegionTypeCodeVersionWithHttpInfo method

Future<Response> listCodesByRegionTypeCodeVersionWithHttpInfo({
  1. String? region,
  2. String? type,
  3. String? code,
  4. String? version,
})

Finding codes by code, type and version

Returns a list of codes matched with given input.

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> listCodesByRegionTypeCodeVersionWithHttpInfo({ String? region, String? type, String? code, String? version, }) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/code/byRegionTypeCode';

  // ignore: prefer_final_locals
  Object? postBody;

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

  if (region != null) {
    queryParams.addAll(_queryParams('', 'region', region));
  }
  if (type != null) {
    queryParams.addAll(_queryParams('', 'type', type));
  }
  if (code != null) {
    queryParams.addAll(_queryParams('', 'code', code));
  }
  if (version != null) {
    queryParams.addAll(_queryParams('', 'version', version));
  }

  const authNames = <String>[r'basicSchema'];
  const contentTypes = <String>[];


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