Latest generation

This commit is contained in:
ci core model
2026-03-26 10:57:03 +00:00
parent b2dba0e706
commit 2cd967b6ff
6 changed files with 47 additions and 5 deletions

View File

@@ -1409,6 +1409,8 @@ class GetAvailableSlotsRequest extends $pb.GeneratedMessage {
$core.String? endDate,
$core.Iterable<$core.String>? skippedAppointmentIDs,
$core.String? actorID,
$core.Iterable<$3.MetadataElement>? carrierInformation,
$core.Iterable<$3.MetadataElement>? metaData,
}) {
final result = create();
if (header != null) result.header = header;
@@ -1419,6 +1421,8 @@ class GetAvailableSlotsRequest extends $pb.GeneratedMessage {
if (endDate != null) result.endDate = endDate;
if (skippedAppointmentIDs != null) result.skippedAppointmentIDs.addAll(skippedAppointmentIDs);
if (actorID != null) result.actorID = actorID;
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
if (metaData != null) result.metaData.addAll(metaData);
return result;
}
@@ -1436,6 +1440,8 @@ class GetAvailableSlotsRequest extends $pb.GeneratedMessage {
..aOS(6, _omitFieldNames ? '' : 'EndDate', protoName: 'EndDate')
..pPS(7, _omitFieldNames ? '' : 'SkippedAppointmentIDs', protoName: 'SkippedAppointmentIDs')
..aOS(8, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..pc<$3.MetadataElement>(9, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $3.MetadataElement.create)
..pc<$3.MetadataElement>(10, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $3.MetadataElement.create)
..hasRequiredFields = false
;
@@ -1515,6 +1521,13 @@ class GetAvailableSlotsRequest extends $pb.GeneratedMessage {
$core.bool hasActorID() => $_has(7);
@$pb.TagNumber(8)
void clearActorID() => $_clearField(8);
/// Carrier information metadata
@$pb.TagNumber(9)
$pb.PbList<$3.MetadataElement> get carrierInformation => $_getList(8);
@$pb.TagNumber(10)
$pb.PbList<$3.MetadataElement> get metaData => $_getList(9);
}
class GetAvailableSlotsResponse extends $pb.GeneratedMessage {