Latest generation

This commit is contained in:
ci core model
2026-05-28 08:13:29 +00:00
parent 057af036e2
commit 030899647a
32 changed files with 2189 additions and 447 deletions

View File

@@ -45,6 +45,8 @@ class ExecutionflowPayload extends $pb.GeneratedMessage {
$core.Iterable<$1.ETAbyHU>? handlingunitETAs,
$1.ETA? executionflowETA,
$1.ETA? executionflowETAComputed,
$core.Iterable<$0.AppointmentSummary>? appointments,
$core.Iterable<$0.AppointmentSummary>? removedAppointments,
}) {
final result = create();
if (creationDateTime != null) result.creationDateTime = creationDateTime;
@@ -67,6 +69,8 @@ class ExecutionflowPayload extends $pb.GeneratedMessage {
if (handlingunitETAs != null) result.handlingunitETAs.addAll(handlingunitETAs);
if (executionflowETA != null) result.executionflowETA = executionflowETA;
if (executionflowETAComputed != null) result.executionflowETAComputed = executionflowETAComputed;
if (appointments != null) result.appointments.addAll(appointments);
if (removedAppointments != null) result.removedAppointments.addAll(removedAppointments);
return result;
}
@@ -96,6 +100,8 @@ class ExecutionflowPayload extends $pb.GeneratedMessage {
..pc<$1.ETAbyHU>(20, _omitFieldNames ? '' : 'HandlingunitETAs', $pb.PbFieldType.PM, protoName: 'HandlingunitETAs', subBuilder: $1.ETAbyHU.create)
..aOM<$1.ETA>(21, _omitFieldNames ? '' : 'ExecutionflowETA', protoName: 'ExecutionflowETA', subBuilder: $1.ETA.create)
..aOM<$1.ETA>(22, _omitFieldNames ? '' : 'ExecutionflowETAComputed', protoName: 'ExecutionflowETAComputed', subBuilder: $1.ETA.create)
..pc<$0.AppointmentSummary>(23, _omitFieldNames ? '' : 'Appointments', $pb.PbFieldType.PM, protoName: 'Appointments', subBuilder: $0.AppointmentSummary.create)
..pc<$0.AppointmentSummary>(24, _omitFieldNames ? '' : 'RemovedAppointments', $pb.PbFieldType.PM, protoName: 'RemovedAppointments', subBuilder: $0.AppointmentSummary.create)
..hasRequiredFields = false
;
@@ -280,6 +286,13 @@ class ExecutionflowPayload extends $pb.GeneratedMessage {
void clearExecutionflowETAComputed() => $_clearField(22);
@$pb.TagNumber(22)
$1.ETA ensureExecutionflowETAComputed() => $_ensure(19);
@$pb.TagNumber(23)
$pb.PbList<$0.AppointmentSummary> get appointments => $_getList(20);
/// Appointment removed from the executionflow
@$pb.TagNumber(24)
$pb.PbList<$0.AppointmentSummary> get removedAppointments => $_getList(21);
}
class Executionflow extends $pb.GeneratedMessage {