UHotelInvoiceCreateParams constructor
UHotelInvoiceCreateParams({
- required List<
int> tags, - required double debtAmount,
- required String reservationId,
- required DateTime dueDate,
- double creditorAmount = 0,
- double paidAmount = 0,
- double penaltyAmount = 0,
- int? penaltyPrecentEveryDate,
- String? detail1,
- String? detail2,
- String? id,
- String? creatorId,
- List<
String> ? adminUserIds,
Implementation
UHotelInvoiceCreateParams({
required this.tags,
required this.debtAmount,
required this.reservationId,
required this.dueDate,
this.creditorAmount = 0,
this.paidAmount = 0,
this.penaltyAmount = 0,
this.penaltyPrecentEveryDate,
this.detail1,
this.detail2,
this.id,
this.creatorId,
this.adminUserIds,
});