kemApiV3KohleradminDealerOrgListingGet method
- List<
String> ? businessPartnerNos, - List<
int> ? ids, - String? filterText,
- int? limit,
- int? offset,
- bool? exportAll,
- DealerOrgSortDTO? sort,
- 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<DealerOrgListingDTO>>
kemApiV3KohleradminDealerOrgListingGet({
List<String>? businessPartnerNos,
List<int>? ids,
String? filterText,
int? limit,
int? offset,
bool? exportAll,
enums.DealerOrgSortDTO? sort,
enums.SortDirectionDTO? sortDirection,
}) {
generatedMapping.putIfAbsent(
DealerOrgListingDTO, () => DealerOrgListingDTO.fromJsonFactory);
return _kemApiV3KohleradminDealerOrgListingGet(
businessPartnerNos: businessPartnerNos,
ids: ids,
filterText: filterText,
limit: limit,
offset: offset,
exportAll: exportAll,
sort: sort?.value?.toString(),
sortDirection: sortDirection?.value?.toString());
}