findTarificationsByWithHttpInfo method

Future<Response> findTarificationsByWithHttpInfo({
  1. String? region,
  2. String? type,
  3. String? tarification,
  4. String? version,
  5. String? startDocumentId,
  6. int? limit,
})

Finding tarifications by tarification, type and version with pagination.

Returns a list of tarifications matched with given input.

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> findTarificationsByWithHttpInfo({ String? region, String? type, String? tarification, String? version, String? startDocumentId, int? limit, }) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/tarification';

  // 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 (tarification != null) {
    queryParams.addAll(_queryParams('', 'tarification', tarification));
  }
  if (version != null) {
    queryParams.addAll(_queryParams('', 'version', version));
  }
  if (startDocumentId != null) {
    queryParams.addAll(_queryParams('', 'startDocumentId', startDocumentId));
  }
  if (limit != null) {
    queryParams.addAll(_queryParams('', 'limit', limit));
  }

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


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