WorkflowsRulesServiceCountReq constructor
WorkflowsRulesServiceCountReq({
- BOOL_FILTER? isActive,
- String? entityUuid,
- STANDARD_LIFECYCLE_STATUS? status,
- Int64? approvedOnStart,
- Int64? approvedOnEnd,
- Int64? approvedByUserId,
- Int64? approverRoleId,
- Int64? completedOnStart,
- Int64? completedOnEnd,
- String? name,
- String? code,
- Int64? notifyUserId,
- WORKFLOW_RULE_SERVICE_NAME? serviceName,
- STANDARD_LIFECYCLE_STATUS? recordStatus,
- WORKFLOW_RULE_MOMENT? moment,
- WORKFLOW_RULE_EXECUTE_ON? executeOn,
- Int64? creationTimestampStart,
- Int64? creationTimestampEnd,
- Int64? modificationTimestampStart,
- 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;
}