createHotelRoom method
Future<(UResponse<String> ?, UEmptyResponse?, String?)>
createHotelRoom({
- required UHotelRoomCreateParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<String>?, UEmptyResponse?, String?)> createHotelRoom({
required UHotelRoomCreateParams p,
Function(UResponse<String> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/Hotel/HotelRoom/Create", p.toMap(), _Api.raw<String>(), _Api.empty, onOk, onError, onException);