readHotelRoomAvailability method
Future<(UResponse<List<UHotelRoomAvailabilityResponse> > ?, UEmptyResponse?, String?)>
readHotelRoomAvailability({
- required UHotelRoomAvailabilityParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<List<UHotelRoomAvailabilityResponse>>?, UEmptyResponse?, String?)> readHotelRoomAvailability({
required UHotelRoomAvailabilityParams p,
Function(UResponse<List<UHotelRoomAvailabilityResponse>> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/Hotel/HotelRoom/Availability", p.toMap(), _Api.list(UHotelRoomAvailabilityResponse.fromMap), _Api.empty, onOk, onError, onException, locale: true);