DebitNotesServiceItemUpdateRequest constructor

DebitNotesServiceItemUpdateRequest({
  1. String? userComment,
  2. Int64? id,
  3. Int64? internalQuantity,
  4. Int64? vendorUomId,
  5. Int64? vendorQuantity,
  6. Int64? vendorUnitPrice,
  7. Int64? taxGroupId,
  8. Int64? roundOff,
  9. String? specifications,
})

Implementation

factory DebitNotesServiceItemUpdateRequest({
  $core.String? userComment,
  $fixnum.Int64? id,
  $fixnum.Int64? internalQuantity,
  $fixnum.Int64? vendorUomId,
  $fixnum.Int64? vendorQuantity,
  $fixnum.Int64? vendorUnitPrice,
  $fixnum.Int64? taxGroupId,
  $fixnum.Int64? roundOff,
  $core.String? specifications,
}) {
  final result = create();
  if (userComment != null) result.userComment = userComment;
  if (id != null) result.id = id;
  if (internalQuantity != null) result.internalQuantity = internalQuantity;
  if (vendorUomId != null) result.vendorUomId = vendorUomId;
  if (vendorQuantity != null) result.vendorQuantity = vendorQuantity;
  if (vendorUnitPrice != null) result.vendorUnitPrice = vendorUnitPrice;
  if (taxGroupId != null) result.taxGroupId = taxGroupId;
  if (roundOff != null) result.roundOff = roundOff;
  if (specifications != null) result.specifications = specifications;
  return result;
}