readHotelReservations method
Future<(UResponse<List<UHotelReservationResponse> > ?, UResponse?, String?)>
readHotelReservations({
- required UHotelReservationReadParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<List<UHotelReservationResponse>>?, UResponse<dynamic>?, String?)> readHotelReservations({
required UHotelReservationReadParams p,
Function(UResponse<List<UHotelReservationResponse>> r)? onOk,
Function(UResponse<dynamic> e)? onError,
Function(String e)? onException,
}) => _Api.call("/Hotel/HotelReservation/Read", p.toMap(), _Api.list(UHotelReservationResponse.fromMap), _Api.dyn, onOk, onError, onException, locale: true);