Latest generation

This commit is contained in:
ci core model
2025-12-01 09:06:40 +00:00
parent ced104d1c3
commit bca3b3a2ed
6 changed files with 34 additions and 5 deletions

View File

@@ -118,6 +118,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
$core.Iterable<$0.MetadataElement>? carrierInformation,
$core.String? actorID,
$3.Address? address,
$core.String? siteName,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -137,6 +138,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
if (actorID != null) result.actorID = actorID;
if (address != null) result.address = address;
if (siteName != null) result.siteName = siteName;
return result;
}
@@ -163,6 +165,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
..pc<$0.MetadataElement>(19, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $0.MetadataElement.create)
..aOS(20, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..aOM<$3.Address>(21, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $3.Address.create)
..aOS(22, _omitFieldNames ? '' : 'SiteName', protoName: 'SiteName')
..hasRequiredFields = false
;
@@ -315,6 +318,16 @@ class AppointmentPayload extends $pb.GeneratedMessage {
void clearAddress() => $_clearField(21);
@$pb.TagNumber(21)
$3.Address ensureAddress() => $_ensure(16);
/// Name of the appointment site
@$pb.TagNumber(22)
$core.String get siteName => $_getSZ(17);
@$pb.TagNumber(22)
set siteName($core.String value) => $_setString(17, value);
@$pb.TagNumber(22)
$core.bool hasSiteName() => $_has(17);
@$pb.TagNumber(22)
void clearSiteName() => $_clearField(22);
}
class AppointmentTriplet extends $pb.GeneratedMessage {