updateHotelInvoice method
Future<(UEmptyResponse?, UResponse?, String?)>
updateHotelInvoice({
- required UHotelInvoiceUpdateParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UEmptyResponse?, UResponse<dynamic>?, String?)> updateHotelInvoice({
required UHotelInvoiceUpdateParams p,
Function(UEmptyResponse r)? onOk,
Function(UResponse<dynamic> e)? onError,
Function(String e)? onException,
}) => _Api.call("/Hotel/HotelInvoice/Update", p.toMap(), _Api.empty, _Api.dyn, onOk, onError, onException, locale: true);