ComponentsServiceSearchAllReq constructor
ComponentsServiceSearchAllReq({
- BOOL_FILTER? isActive,
- Int64? count,
- Int64? offset,
- SORT_ORDER? sortOrder,
- INVENTORY_SORT_KEY? sortKey,
- String? entityUuid,
- INVENTORY_LIFECYCLE? status,
- String? searchKey,
- Int64? parentRefId,
- COMPONENT_REF_FROM? refFrom,
- Int64? refId,
- Int64? familyId,
- Int64? secondaryUomId,
- Int64? storeId,
- Int64? storageId,
- BOOL_FILTER? isQcReportPublic,
- Int64? locationId,
Implementation
factory ComponentsServiceSearchAllReq({
$1.BOOL_FILTER? isActive,
$fixnum.Int64? count,
$fixnum.Int64? offset,
$1.SORT_ORDER? sortOrder,
$1.INVENTORY_SORT_KEY? sortKey,
$core.String? entityUuid,
$1.INVENTORY_LIFECYCLE? status,
$core.String? searchKey,
$fixnum.Int64? parentRefId,
COMPONENT_REF_FROM? refFrom,
$fixnum.Int64? refId,
$fixnum.Int64? familyId,
$fixnum.Int64? secondaryUomId,
$fixnum.Int64? storeId,
$fixnum.Int64? storageId,
$1.BOOL_FILTER? isQcReportPublic,
$fixnum.Int64? locationId,
}) {
final result = create();
if (isActive != null) result.isActive = isActive;
if (count != null) result.count = count;
if (offset != null) result.offset = offset;
if (sortOrder != null) result.sortOrder = sortOrder;
if (sortKey != null) result.sortKey = sortKey;
if (entityUuid != null) result.entityUuid = entityUuid;
if (status != null) result.status = status;
if (searchKey != null) result.searchKey = searchKey;
if (parentRefId != null) result.parentRefId = parentRefId;
if (refFrom != null) result.refFrom = refFrom;
if (refId != null) result.refId = refId;
if (familyId != null) result.familyId = familyId;
if (secondaryUomId != null) result.secondaryUomId = secondaryUomId;
if (storeId != null) result.storeId = storeId;
if (storageId != null) result.storageId = storageId;
if (isQcReportPublic != null) result.isQcReportPublic = isQcReportPublic;
if (locationId != null) result.locationId = locationId;
return result;
}