Input$QuotationUpdateInput constructor

Input$QuotationUpdateInput({
  1. String? number,
  2. DateTime? date,
  3. String? note,
  4. List<Input$KeyValueInput>? details,
  5. 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. Input$TargetACIInput? target,
  14. String? company,
  15. Input$TotalPriceInput? totalPrice,
  16. String? toPay,
  17. String? totalTax,
  18. String? totalReductions,
  19. String? currency,
  20. String? bank,
  21. Input$SaleCustomerInput? customer,
  22. Input$QuotationConversionInput? conversion,
  23. required String id,
})

Implementation

factory Input$QuotationUpdateInput({
  String? number,
  DateTime? date,
  String? note,
  List<Input$KeyValueInput>? details,
  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,
  Input$TargetACIInput? target,
  String? company,
  Input$TotalPriceInput? totalPrice,
  String? toPay,
  String? totalTax,
  String? totalReductions,
  String? currency,
  String? bank,
  Input$SaleCustomerInput? customer,
  Input$QuotationConversionInput? conversion,
  required String id,
}) =>
    Input$QuotationUpdateInput._({
      if (number != null) r'number': number,
      if (date != null) r'date': date,
      if (note != null) r'note': note,
      if (details != null) r'details': details,
      if (products != null) 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,
      if (target != null) r'target': target,
      if (company != null) 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,
      if (currency != null) r'currency': currency,
      if (bank != null) r'bank': bank,
      if (customer != null) r'customer': customer,
      if (conversion != null) r'conversion': conversion,
      r'id': id,
    });