DebitNoteItemProspectiveInfoRequest constructor
DebitNoteItemProspectiveInfoRequest({
- Int64? debitNoteId,
- Int64? familyId,
Implementation
factory DebitNoteItemProspectiveInfoRequest({
$fixnum.Int64? debitNoteId,
$fixnum.Int64? familyId,
}) {
final result = create();
if (debitNoteId != null) result.debitNoteId = debitNoteId;
if (familyId != null) result.familyId = familyId;
return result;
}