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

@@ -35,6 +35,7 @@ class ExecutionflowMapSummaryToOrderPayload extends $pb.GeneratedMessage {
$core.int? attachmentNumber,
$core.Iterable<$1.ClaimSummary>? claims,
$core.int? claimNumber,
$core.Iterable<$1.AppointmentSummary>? appointments,
}) {
final result = create();
if (status != null) result.status = status;
@@ -48,6 +49,7 @@ class ExecutionflowMapSummaryToOrderPayload extends $pb.GeneratedMessage {
if (attachmentNumber != null) result.attachmentNumber = attachmentNumber;
if (claims != null) result.claims.addAll(claims);
if (claimNumber != null) result.claimNumber = claimNumber;
if (appointments != null) result.appointments.addAll(appointments);
return result;
}
@@ -68,6 +70,7 @@ class ExecutionflowMapSummaryToOrderPayload extends $pb.GeneratedMessage {
..a<$core.int>(17, _omitFieldNames ? '' : 'AttachmentNumber', $pb.PbFieldType.O3, protoName: 'AttachmentNumber')
..pc<$1.ClaimSummary>(18, _omitFieldNames ? '' : 'Claims', $pb.PbFieldType.PM, protoName: 'Claims', subBuilder: $1.ClaimSummary.create)
..a<$core.int>(19, _omitFieldNames ? '' : 'ClaimNumber', $pb.PbFieldType.O3, protoName: 'ClaimNumber')
..pc<$1.AppointmentSummary>(20, _omitFieldNames ? '' : 'Appointments', $pb.PbFieldType.PM, protoName: 'Appointments', subBuilder: $1.AppointmentSummary.create)
..hasRequiredFields = false
;
@@ -176,6 +179,9 @@ class ExecutionflowMapSummaryToOrderPayload extends $pb.GeneratedMessage {
$core.bool hasClaimNumber() => $_has(10);
@$pb.TagNumber(19)
void clearClaimNumber() => $_clearField(19);
@$pb.TagNumber(20)
$pb.PbList<$1.AppointmentSummary> get appointments => $_getList(11);
}
class ExecutionflowMapSummaryToOrder extends $pb.GeneratedMessage {