UrpSecCountsResponse constructor
UrpSecCountsResponse({})
Implementation
factory UrpSecCountsResponse({
$core.String? readerSn,
$core.String? sensorId,
$core.String? payload,
$1.UrpCalibration? calibration,
$core.double? counts,
$core.String? tokenSn,
$core.int? tokenScanNr,
$fixnum.Int64? tokenIat,
$fixnum.Int64? tokenExp,
}) {
final $result = create();
if (readerSn != null) {
$result.readerSn = readerSn;
}
if (sensorId != null) {
$result.sensorId = sensorId;
}
if (payload != null) {
$result.payload = payload;
}
if (calibration != null) {
$result.calibration = calibration;
}
if (counts != null) {
$result.counts = counts;
}
if (tokenSn != null) {
$result.tokenSn = tokenSn;
}
if (tokenScanNr != null) {
$result.tokenScanNr = tokenScanNr;
}
if (tokenIat != null) {
$result.tokenIat = tokenIat;
}
if (tokenExp != null) {
$result.tokenExp = tokenExp;
}
return $result;
}