HardwareEventsRequest constructor
HardwareEventsRequest({})
Implementation
factory HardwareEventsRequest({
$core.List<$core.int>? hardwareId,
$core.List<$core.int>? jobId,
HardwareEvent_Type? type,
$fixnum.Int64? limit,
$core.bool? reverse,
$core.List<$core.int>? id,
$2.Timestamp? ts,
}) {
final _result = create();
if (hardwareId != null) {
_result.hardwareId = hardwareId;
}
if (jobId != null) {
_result.jobId = jobId;
}
if (type != null) {
_result.type = type;
}
if (limit != null) {
_result.limit = limit;
}
if (reverse != null) {
_result.reverse = reverse;
}
if (id != null) {
_result.id = id;
}
if (ts != null) {
_result.ts = ts;
}
return _result;
}