Latest generation

This commit is contained in:
ci core model
2025-08-04 13:23:41 +00:00
parent 3723d83f53
commit 2adecb73a7
4 changed files with 37 additions and 14 deletions

View File

@@ -112,6 +112,8 @@ class AppointmentPayload extends $pb.GeneratedMessage {
$core.String? carrierID,
$core.String? carrierName,
$core.Iterable<$0.AttachmentSummary>? attachments,
$core.int? attachmentNumber,
$core.Iterable<$core.String>? removedEmails,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -126,6 +128,8 @@ class AppointmentPayload extends $pb.GeneratedMessage {
if (carrierID != null) result.carrierID = carrierID;
if (carrierName != null) result.carrierName = carrierName;
if (attachments != null) result.attachments.addAll(attachments);
if (attachmentNumber != null) result.attachmentNumber = attachmentNumber;
if (removedEmails != null) result.removedEmails.addAll(removedEmails);
return result;
}
@@ -147,6 +151,8 @@ class AppointmentPayload extends $pb.GeneratedMessage {
..aOS(11, _omitFieldNames ? '' : 'CarrierID', protoName: 'CarrierID')
..aOS(12, _omitFieldNames ? '' : 'CarrierName', protoName: 'CarrierName')
..pc<$0.AttachmentSummary>(13, _omitFieldNames ? '' : 'Attachments', $pb.PbFieldType.PM, protoName: 'Attachments', subBuilder: $0.AttachmentSummary.create)
..a<$core.int>(14, _omitFieldNames ? '' : 'AttachmentNumber', $pb.PbFieldType.O3, protoName: 'AttachmentNumber')
..pPS(16, _omitFieldNames ? '' : 'RemovedEmails', protoName: 'RemovedEmails')
..hasRequiredFields = false
;
@@ -252,6 +258,19 @@ class AppointmentPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(13)
$pb.PbList<$0.AttachmentSummary> get attachments => $_getList(11);
@$pb.TagNumber(14)
$core.int get attachmentNumber => $_getIZ(12);
@$pb.TagNumber(14)
set attachmentNumber($core.int value) => $_setSignedInt32(12, value);
@$pb.TagNumber(14)
$core.bool hasAttachmentNumber() => $_has(12);
@$pb.TagNumber(14)
void clearAttachmentNumber() => $_clearField(14);
/// Emails removed from the appointment
@$pb.TagNumber(16)
$pb.PbList<$core.String> get removedEmails => $_getList(13);
}
class AppointmentTriplet extends $pb.GeneratedMessage {