Latest generation

This commit is contained in:
ci core model
2026-06-04 08:04:43 +00:00
parent a9c1fdae5b
commit 7f2c7f6907
6 changed files with 65 additions and 7 deletions

View File

@@ -26,11 +26,13 @@ class HandlingunitGoodsPreparedPayload extends $pb.GeneratedMessage {
$1.HandlingunitInformation? information,
$core.Iterable<$1.QuantifiedGoodsByExeflow>? preparedContents,
$core.Iterable<$2.MetadataElement>? metaData,
$core.String? reference,
}) {
final result = create();
if (information != null) result.information = information;
if (preparedContents != null) result.preparedContents.addAll(preparedContents);
if (metaData != null) result.metaData.addAll(metaData);
if (reference != null) result.reference = reference;
return result;
}
@@ -43,6 +45,7 @@ class HandlingunitGoodsPreparedPayload extends $pb.GeneratedMessage {
..aOM<$1.HandlingunitInformation>(1, _omitFieldNames ? '' : 'Information', protoName: 'Information', subBuilder: $1.HandlingunitInformation.create)
..pc<$1.QuantifiedGoodsByExeflow>(2, _omitFieldNames ? '' : 'PreparedContents', $pb.PbFieldType.PM, protoName: 'PreparedContents', subBuilder: $1.QuantifiedGoodsByExeflow.create)
..pc<$2.MetadataElement>(3, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $2.MetadataElement.create)
..aOS(4, _omitFieldNames ? '' : 'Reference', protoName: 'Reference')
..hasRequiredFields = false
;
@@ -80,6 +83,15 @@ class HandlingunitGoodsPreparedPayload extends $pb.GeneratedMessage {
/// Metadata are characteristics specific to the project. They can be of several data form (string, integer, float, boolean or timestamp)
@$pb.TagNumber(3)
$pb.PbList<$2.MetadataElement> get metaData => $_getList(2);
@$pb.TagNumber(4)
$core.String get reference => $_getSZ(3);
@$pb.TagNumber(4)
set reference($core.String value) => $_setString(3, value);
@$pb.TagNumber(4)
$core.bool hasReference() => $_has(3);
@$pb.TagNumber(4)
void clearReference() => $_clearField(4);
}
class HandlingunitGoodsPreparedEvent extends $pb.GeneratedMessage {
@@ -306,11 +318,13 @@ class HandlingunitHUsAddedPayload extends $pb.GeneratedMessage {
$1.HandlingunitInformation? information,
$core.Iterable<$core.String>? includedHandlingunitIDs,
$core.Iterable<$2.MetadataElement>? metaData,
$core.String? reference,
}) {
final result = create();
if (information != null) result.information = information;
if (includedHandlingunitIDs != null) result.includedHandlingunitIDs.addAll(includedHandlingunitIDs);
if (metaData != null) result.metaData.addAll(metaData);
if (reference != null) result.reference = reference;
return result;
}
@@ -323,6 +337,7 @@ class HandlingunitHUsAddedPayload extends $pb.GeneratedMessage {
..aOM<$1.HandlingunitInformation>(1, _omitFieldNames ? '' : 'Information', protoName: 'Information', subBuilder: $1.HandlingunitInformation.create)
..pPS(3, _omitFieldNames ? '' : 'IncludedHandlingunitIDs', protoName: 'IncludedHandlingunitIDs')
..pc<$2.MetadataElement>(4, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $2.MetadataElement.create)
..aOS(5, _omitFieldNames ? '' : 'Reference', protoName: 'Reference')
..hasRequiredFields = false
;
@@ -360,6 +375,15 @@ class HandlingunitHUsAddedPayload extends $pb.GeneratedMessage {
/// Metadata are characteristics specific to the project. They can be of several data form (string, integer, float, boolean or timestamp)
@$pb.TagNumber(4)
$pb.PbList<$2.MetadataElement> get metaData => $_getList(2);
@$pb.TagNumber(5)
$core.String get reference => $_getSZ(3);
@$pb.TagNumber(5)
set reference($core.String value) => $_setString(3, value);
@$pb.TagNumber(5)
$core.bool hasReference() => $_has(3);
@$pb.TagNumber(5)
void clearReference() => $_clearField(5);
}
class HandlingunitHUsAddedEvent extends $pb.GeneratedMessage {
@@ -1629,9 +1653,11 @@ class HandlingunitDispatchedResponse extends $pb.GeneratedMessage {
class HandlingunitGoodsReceivedPayload extends $pb.GeneratedMessage {
factory HandlingunitGoodsReceivedPayload({
$core.Iterable<$1.QuantifiedDatedGoodsByExeflow>? receivedContents,
$core.String? reference,
}) {
final result = create();
if (receivedContents != null) result.receivedContents.addAll(receivedContents);
if (reference != null) result.reference = reference;
return result;
}
@@ -1642,6 +1668,7 @@ class HandlingunitGoodsReceivedPayload extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitGoodsReceivedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$1.QuantifiedDatedGoodsByExeflow>(1, _omitFieldNames ? '' : 'ReceivedContents', $pb.PbFieldType.PM, protoName: 'ReceivedContents', subBuilder: $1.QuantifiedDatedGoodsByExeflow.create)
..aOS(2, _omitFieldNames ? '' : 'Reference', protoName: 'Reference')
..hasRequiredFields = false
;
@@ -1664,6 +1691,15 @@ class HandlingunitGoodsReceivedPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$pb.PbList<$1.QuantifiedDatedGoodsByExeflow> get receivedContents => $_getList(0);
@$pb.TagNumber(2)
$core.String get reference => $_getSZ(1);
@$pb.TagNumber(2)
set reference($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasReference() => $_has(1);
@$pb.TagNumber(2)
void clearReference() => $_clearField(2);
}
class HandlingunitGoodsReceivedEvent extends $pb.GeneratedMessage {