DebitNotesServiceItemCreateRequest constructor
DebitNotesServiceItemCreateRequest({})
Implementation
factory DebitNotesServiceItemCreateRequest({
$core.String? userComment,
$fixnum.Int64? debitNoteId,
$fixnum.Int64? familyId,
$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 (debitNoteId != null) result.debitNoteId = debitNoteId;
if (familyId != null) result.familyId = familyId;
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;
}