Input$SaleDeliveryNoteInput constructor

Input$SaleDeliveryNoteInput({
  1. String? number,
  2. DateTime? date,
  3. String? note,
  4. List<Input$KeyValueInput>? details,
  5. required List<Input$InvoicingProductsBundleInput> products,
  6. Enum$GenericInvoicingStatusEnum? status,
  7. Input$InvoicingAddressInput? address,
  8. List<Input$taxRankInput>? taxes,
  9. List<Input$InstallmentInput>? installments,
  10. Input$DiscountDtoInput? discount,
  11. String? logistic,
  12. String? project,
  13. required Input$TargetACIInput target,
  14. required String company,
  15. Input$TotalPriceInput? totalPrice,
  16. String? toPay,
  17. String? totalTax,
  18. String? totalReductions,
  19. required String currency,
  20. String? bank,
  21. required Input$SaleCustomerInput customer,
  22. Input$SaleDeliveryNoteOriginInput? origin,
  23. required String warehouse,
})

Implementation

factory Input$SaleDeliveryNoteInput({
  String? number,
  DateTime? date,
  String? note,
  List<Input$KeyValueInput>? details,
  required List<Input$InvoicingProductsBundleInput> products,
  Enum$GenericInvoicingStatusEnum? status,
  Input$InvoicingAddressInput? address,
  List<Input$taxRankInput>? taxes,
  List<Input$InstallmentInput>? installments,
  Input$DiscountDtoInput? discount,
  String? logistic,
  String? project,
  required Input$TargetACIInput target,
  required String company,
  Input$TotalPriceInput? totalPrice,
  String? toPay,
  String? totalTax,
  String? totalReductions,
  required String currency,
  String? bank,
  required Input$SaleCustomerInput customer,
  Input$SaleDeliveryNoteOriginInput? origin,
  required String warehouse,
}) =>
    Input$SaleDeliveryNoteInput._({
      if (number != null) r'number': number,
      if (date != null) r'date': date,
      if (note != null) r'note': note,
      if (details != null) r'details': details,
      r'products': products,
      if (status != null) r'status': status,
      if (address != null) r'address': address,
      if (taxes != null) r'taxes': taxes,
      if (installments != null) r'installments': installments,
      if (discount != null) r'discount': discount,
      if (logistic != null) r'logistic': logistic,
      if (project != null) r'project': project,
      r'target': target,
      r'company': company,
      if (totalPrice != null) r'totalPrice': totalPrice,
      if (toPay != null) r'toPay': toPay,
      if (totalTax != null) r'totalTax': totalTax,
      if (totalReductions != null) r'totalReductions': totalReductions,
      r'currency': currency,
      if (bank != null) r'bank': bank,
      r'customer': customer,
      if (origin != null) r'origin': origin,
      r'warehouse': warehouse,
    });