kemApiV3KohleradminDealerOrgGet method

Future<Response<List<DealerOrgDTO>>> kemApiV3KohleradminDealerOrgGet({
  1. List<String>? businessPartnerNos,
  2. List<int>? ids,
  3. String? filterText,
  4. int? limit,
  5. int? offset,
  6. bool? exportAll,
  7. DealerOrgSortDTO? sort,
  8. SortDirectionDTO? sortDirection,
})

@param businessPartnerNos @param ids @param filterText @param limit @param offset @param exportAll @param sort Various values based on the columns in the Pro Analytics dealer org table @param sortDirection

Implementation

Future<chopper.Response<List<DealerOrgDTO>>> kemApiV3KohleradminDealerOrgGet({
  List<String>? businessPartnerNos,
  List<int>? ids,
  String? filterText,
  int? limit,
  int? offset,
  bool? exportAll,
  enums.DealerOrgSortDTO? sort,
  enums.SortDirectionDTO? sortDirection,
}) {
  generatedMapping.putIfAbsent(
      DealerOrgDTO, () => DealerOrgDTO.fromJsonFactory);

  return _kemApiV3KohleradminDealerOrgGet(
      businessPartnerNos: businessPartnerNos,
      ids: ids,
      filterText: filterText,
      limit: limit,
      offset: offset,
      exportAll: exportAll,
      sort: sort?.value?.toString(),
      sortDirection: sortDirection?.value?.toString());
}