DebitNotesServiceCountReq constructor

DebitNotesServiceCountReq({
  1. BOOL_FILTER? isActive,
  2. String? entityUuid,
  3. STANDARD_LIFECYCLE_STATUS? status,
  4. Int64? approvedOnStart,
  5. Int64? approvedOnEnd,
  6. Int64? approvedByUserId,
  7. Int64? approverRoleId,
  8. Int64? completedOnStart,
  9. Int64? completedOnEnd,
  10. String? referenceId,
  11. String? finalRefNumber,
  12. DEBIT_NOTE_REF_FROM? refFrom,
  13. Int64? refId,
  14. Int64? currencyId,
  15. Int64? vendorId,
  16. Int64? projectId,
  17. Int64? familyId,
  18. Int64? totalValueMin,
  19. Int64? totalValueMax,
  20. Int64? creationTimestampStart,
  21. Int64? creationTimestampEnd,
  22. Int64? modificationTimestampStart,
  23. Int64? modificationTimestampEnd,
  24. Iterable<FormFieldDatumFilterRequest>? formData,
})

Implementation

factory DebitNotesServiceCountReq({
  $1.BOOL_FILTER? isActive,
  $core.String? entityUuid,
  $1.STANDARD_LIFECYCLE_STATUS? status,
  $fixnum.Int64? approvedOnStart,
  $fixnum.Int64? approvedOnEnd,
  $fixnum.Int64? approvedByUserId,
  $fixnum.Int64? approverRoleId,
  $fixnum.Int64? completedOnStart,
  $fixnum.Int64? completedOnEnd,
  $core.String? referenceId,
  $core.String? finalRefNumber,
  DEBIT_NOTE_REF_FROM? refFrom,
  $fixnum.Int64? refId,
  $fixnum.Int64? currencyId,
  $fixnum.Int64? vendorId,
  $fixnum.Int64? projectId,
  $fixnum.Int64? familyId,
  $fixnum.Int64? totalValueMin,
  $fixnum.Int64? totalValueMax,
  $fixnum.Int64? creationTimestampStart,
  $fixnum.Int64? creationTimestampEnd,
  $fixnum.Int64? modificationTimestampStart,
  $fixnum.Int64? modificationTimestampEnd,
  $core.Iterable<$4.FormFieldDatumFilterRequest>? formData,
}) {
  final result = create();
  if (isActive != null) result.isActive = isActive;
  if (entityUuid != null) result.entityUuid = entityUuid;
  if (status != null) result.status = status;
  if (approvedOnStart != null) result.approvedOnStart = approvedOnStart;
  if (approvedOnEnd != null) result.approvedOnEnd = approvedOnEnd;
  if (approvedByUserId != null) result.approvedByUserId = approvedByUserId;
  if (approverRoleId != null) result.approverRoleId = approverRoleId;
  if (completedOnStart != null) result.completedOnStart = completedOnStart;
  if (completedOnEnd != null) result.completedOnEnd = completedOnEnd;
  if (referenceId != null) result.referenceId = referenceId;
  if (finalRefNumber != null) result.finalRefNumber = finalRefNumber;
  if (refFrom != null) result.refFrom = refFrom;
  if (refId != null) result.refId = refId;
  if (currencyId != null) result.currencyId = currencyId;
  if (vendorId != null) result.vendorId = vendorId;
  if (projectId != null) result.projectId = projectId;
  if (familyId != null) result.familyId = familyId;
  if (totalValueMin != null) result.totalValueMin = totalValueMin;
  if (totalValueMax != null) result.totalValueMax = totalValueMax;
  if (creationTimestampStart != null)
    result.creationTimestampStart = creationTimestampStart;
  if (creationTimestampEnd != null)
    result.creationTimestampEnd = creationTimestampEnd;
  if (modificationTimestampStart != null)
    result.modificationTimestampStart = modificationTimestampStart;
  if (modificationTimestampEnd != null)
    result.modificationTimestampEnd = modificationTimestampEnd;
  if (formData != null) result.formData.addAll(formData);
  return result;
}