Latest generation

This commit is contained in:
ci core model
2026-03-26 09:55:08 +00:00
parent 2c969334f5
commit b2dba0e706
7 changed files with 34 additions and 7 deletions

View File

@@ -41,6 +41,7 @@ class AppointmentNotifyPayload extends $pb.GeneratedMessage {
$core.Iterable<$core.String>? attendees,
$core.Iterable<$core.String>? removedAttendees,
$core.Iterable<$2.MetadataElement>? segmentationKeys,
$core.bool? wMSCreated,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -59,6 +60,7 @@ class AppointmentNotifyPayload extends $pb.GeneratedMessage {
if (attendees != null) result.attendees.addAll(attendees);
if (removedAttendees != null) result.removedAttendees.addAll(removedAttendees);
if (segmentationKeys != null) result.segmentationKeys.addAll(segmentationKeys);
if (wMSCreated != null) result.wMSCreated = wMSCreated;
return result;
}
@@ -84,6 +86,7 @@ class AppointmentNotifyPayload extends $pb.GeneratedMessage {
..pPS(23, _omitFieldNames ? '' : 'Attendees', protoName: 'Attendees')
..pPS(24, _omitFieldNames ? '' : 'RemovedAttendees', protoName: 'RemovedAttendees')
..pc<$2.MetadataElement>(25, _omitFieldNames ? '' : 'SegmentationKeys', $pb.PbFieldType.PM, protoName: 'SegmentationKeys', subBuilder: $2.MetadataElement.create)
..aOB(26, _omitFieldNames ? '' : 'WMSCreated', protoName: 'WMSCreated')
..hasRequiredFields = false
;
@@ -225,6 +228,15 @@ class AppointmentNotifyPayload extends $pb.GeneratedMessage {
/// repeated SegmentationSelection SegmentationSelections = 4;
@$pb.TagNumber(25)
$pb.PbList<$2.MetadataElement> get segmentationKeys => $_getList(15);
@$pb.TagNumber(26)
$core.bool get wMSCreated => $_getBF(16);
@$pb.TagNumber(26)
set wMSCreated($core.bool value) => $_setBool(16, value);
@$pb.TagNumber(26)
$core.bool hasWMSCreated() => $_has(16);
@$pb.TagNumber(26)
void clearWMSCreated() => $_clearField(26);
}
class AppointmentNotify extends $pb.GeneratedMessage {