ClientStreamsServiceSearchAllReq constructor
ClientStreamsServiceSearchAllReq({
- BOOL_FILTER? isActive,
- Int64? count,
- Int64? offset,
- SORT_ORDER? sortOrder,
- CLIENT_STREAM_SORT_KEY? sortKey,
- String? entityUuid,
- CLIENT_STREAM_LIFECYCLE? status,
- String? searchKey,
- Int64? clientId,
- Int64? internalSubscriberUserId,
- Int64? clientSubscriberUserId,
Implementation
factory ClientStreamsServiceSearchAllReq({
$1.BOOL_FILTER? isActive,
$fixnum.Int64? count,
$fixnum.Int64? offset,
$1.SORT_ORDER? sortOrder,
CLIENT_STREAM_SORT_KEY? sortKey,
$core.String? entityUuid,
CLIENT_STREAM_LIFECYCLE? status,
$core.String? searchKey,
$fixnum.Int64? clientId,
$fixnum.Int64? internalSubscriberUserId,
$fixnum.Int64? clientSubscriberUserId,
}) {
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 (clientId != null) result.clientId = clientId;
if (internalSubscriberUserId != null)
result.internalSubscriberUserId = internalSubscriberUserId;
if (clientSubscriberUserId != null)
result.clientSubscriberUserId = clientSubscriberUserId;
return result;
}