Latest generation

This commit is contained in:
ci core model
2025-11-04 08:22:35 +00:00
parent 2e0a79561d
commit fa0123c4d4
11 changed files with 444 additions and 53 deletions

View File

@@ -116,6 +116,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
$core.Iterable<$core.String>? removedEmails,
$core.String? reason,
$core.bool? instructionAck,
$core.Iterable<$0.MetadataElement>? carrierInformation,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -134,6 +135,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
if (removedEmails != null) result.removedEmails.addAll(removedEmails);
if (reason != null) result.reason = reason;
if (instructionAck != null) result.instructionAck = instructionAck;
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
return result;
}
@@ -159,6 +161,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
..pPS(16, _omitFieldNames ? '' : 'RemovedEmails', protoName: 'RemovedEmails')
..aOS(17, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..aOB(18, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
..pc<$0.MetadataElement>(19, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $0.MetadataElement.create)
..hasRequiredFields = false
;
@@ -303,6 +306,10 @@ class AppointmentPayload extends $pb.GeneratedMessage {
$core.bool hasInstructionAck() => $_has(15);
@$pb.TagNumber(18)
void clearInstructionAck() => $_clearField(18);
/// Carrier information metadata
@$pb.TagNumber(19)
$pb.PbList<$0.MetadataElement> get carrierInformation => $_getList(16);
}
class AppointmentTriplet extends $pb.GeneratedMessage {