Latest generation

This commit is contained in:
ci core model
2026-08-07 13:28:01 +00:00
parent 4c70709734
commit 0caad4e4cb
6 changed files with 50 additions and 9 deletions

View File

@@ -186,6 +186,7 @@ class HandlingunitSummary extends $pb.GeneratedMessage {
$core.Iterable<QuantifiedGoodsByLine>? contents,
$core.String? trackingURL,
$core.bool? isReported,
$core.String? reference,
}) {
final result = create();
if (handlingunitID != null) result.handlingunitID = handlingunitID;
@@ -195,6 +196,7 @@ class HandlingunitSummary extends $pb.GeneratedMessage {
if (contents != null) result.contents.addAll(contents);
if (trackingURL != null) result.trackingURL = trackingURL;
if (isReported != null) result.isReported = isReported;
if (reference != null) result.reference = reference;
return result;
}
@@ -211,6 +213,7 @@ class HandlingunitSummary extends $pb.GeneratedMessage {
..pc<QuantifiedGoodsByLine>(7, _omitFieldNames ? '' : 'Contents', $pb.PbFieldType.PM, protoName: 'Contents', subBuilder: QuantifiedGoodsByLine.create)
..aOS(9, _omitFieldNames ? '' : 'TrackingURL', protoName: 'TrackingURL')
..aOB(10, _omitFieldNames ? '' : 'IsReported', protoName: 'IsReported')
..aOS(11, _omitFieldNames ? '' : 'Reference', protoName: 'Reference')
..hasRequiredFields = false
;
@@ -284,6 +287,15 @@ class HandlingunitSummary extends $pb.GeneratedMessage {
$core.bool hasIsReported() => $_has(6);
@$pb.TagNumber(10)
void clearIsReported() => $_clearField(10);
@$pb.TagNumber(11)
$core.String get reference => $_getSZ(7);
@$pb.TagNumber(11)
set reference($core.String value) => $_setString(7, value);
@$pb.TagNumber(11)
$core.bool hasReference() => $_has(7);
@$pb.TagNumber(11)
void clearReference() => $_clearField(11);
}
class HandlingunitInformation extends $pb.GeneratedMessage {