Latest generation

This commit is contained in:
ci core model
2025-11-24 13:59:35 +00:00
parent b47b30060f
commit db49f71d99
4 changed files with 11 additions and 3 deletions

View File

@@ -1797,6 +1797,7 @@ class Booking extends $pb.GeneratedMessage {
$core.Iterable<Slot>? slots,
$core.String? appointmentKind,
$core.bool? hasReference,
$core.Iterable<$core.String>? emails,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -1805,6 +1806,7 @@ class Booking extends $pb.GeneratedMessage {
if (slots != null) result.slots.addAll(slots);
if (appointmentKind != null) result.appointmentKind = appointmentKind;
if (hasReference != null) result.hasReference = hasReference;
if (emails != null) result.emails.addAll(emails);
return result;
}
@@ -1820,6 +1822,7 @@ class Booking extends $pb.GeneratedMessage {
..pc<Slot>(4, _omitFieldNames ? '' : 'Slots', $pb.PbFieldType.PM, protoName: 'Slots', subBuilder: Slot.create)
..aOS(5, _omitFieldNames ? '' : 'AppointmentKind', protoName: 'AppointmentKind')
..aOB(6, _omitFieldNames ? '' : 'HasReference', protoName: 'HasReference')
..pPS(7, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
..hasRequiredFields = false
;
@@ -1875,6 +1878,9 @@ class Booking extends $pb.GeneratedMessage {
$core.bool hasHasReference() => $_has(5);
@$pb.TagNumber(6)
void clearHasReference() => $_clearField(6);
@$pb.TagNumber(7)
$pb.PbList<$core.String> get emails => $_getList(6);
}
class SlotGroup extends $pb.GeneratedMessage {