ListStorageObjectsRequest constructor
ListStorageObjectsRequest({
- String? userId,
- String? collection,
- Int32Value? limit,
- String? cursor,
Implementation
factory ListStorageObjectsRequest({
$core.String? userId,
$core.String? collection,
$1.Int32Value? limit,
$core.String? cursor,
}) {
final _result = create();
if (userId != null) {
_result.userId = userId;
}
if (collection != null) {
_result.collection = collection;
}
if (limit != null) {
_result.limit = limit;
}
if (cursor != null) {
_result.cursor = cursor;
}
return _result;
}