WorkflowsRulesServiceCountReq constructor

WorkflowsRulesServiceCountReq({
  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? name,
  11. String? code,
  12. Int64? notifyUserId,
  13. WORKFLOW_RULE_SERVICE_NAME? serviceName,
  14. STANDARD_LIFECYCLE_STATUS? recordStatus,
  15. WORKFLOW_RULE_MOMENT? moment,
  16. WORKFLOW_RULE_EXECUTE_ON? executeOn,
  17. Int64? creationTimestampStart,
  18. Int64? creationTimestampEnd,
  19. Int64? modificationTimestampStart,
  20. Int64? modificationTimestampEnd,
})

Implementation

factory WorkflowsRulesServiceCountReq({
  $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? name,
  $core.String? code,
  $fixnum.Int64? notifyUserId,
  WORKFLOW_RULE_SERVICE_NAME? serviceName,
  $1.STANDARD_LIFECYCLE_STATUS? recordStatus,
  WORKFLOW_RULE_MOMENT? moment,
  WORKFLOW_RULE_EXECUTE_ON? executeOn,
  $fixnum.Int64? creationTimestampStart,
  $fixnum.Int64? creationTimestampEnd,
  $fixnum.Int64? modificationTimestampStart,
  $fixnum.Int64? modificationTimestampEnd,
}) {
  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 (name != null) result.name = name;
  if (code != null) result.code = code;
  if (notifyUserId != null) result.notifyUserId = notifyUserId;
  if (serviceName != null) result.serviceName = serviceName;
  if (recordStatus != null) result.recordStatus = recordStatus;
  if (moment != null) result.moment = moment;
  if (executeOn != null) result.executeOn = executeOn;
  if (creationTimestampStart != null)
    result.creationTimestampStart = creationTimestampStart;
  if (creationTimestampEnd != null)
    result.creationTimestampEnd = creationTimestampEnd;
  if (modificationTimestampStart != null)
    result.modificationTimestampStart = modificationTimestampStart;
  if (modificationTimestampEnd != null)
    result.modificationTimestampEnd = modificationTimestampEnd;
  return result;
}