Latest generation

This commit is contained in:
ci core model
2025-11-18 10:31:13 +00:00
parent 3b56b52411
commit e9009d6971
4 changed files with 18 additions and 3 deletions

View File

@@ -2084,10 +2084,12 @@ class GetBookingContextRequest extends $pb.GeneratedMessage {
factory GetBookingContextRequest({
$3.RequestProjectHeader? header,
$core.String? actorID,
$2.AppointmentType? appointmentType,
}) {
final result = create();
if (header != null) result.header = header;
if (actorID != null) result.actorID = actorID;
if (appointmentType != null) result.appointmentType = appointmentType;
return result;
}
@@ -2099,6 +2101,7 @@ class GetBookingContextRequest extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetBookingContextRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..e<$2.AppointmentType>(3, _omitFieldNames ? '' : 'AppointmentType', $pb.PbFieldType.OE, protoName: 'AppointmentType', defaultOrMaker: $2.AppointmentType.APPOINTMENT_TYPE_UNKNOWN, valueOf: $2.AppointmentType.valueOf, enumValues: $2.AppointmentType.values)
..hasRequiredFields = false
;
@@ -2138,6 +2141,15 @@ class GetBookingContextRequest extends $pb.GeneratedMessage {
$core.bool hasActorID() => $_has(1);
@$pb.TagNumber(2)
void clearActorID() => $_clearField(2);
@$pb.TagNumber(3)
$2.AppointmentType get appointmentType => $_getN(2);
@$pb.TagNumber(3)
set appointmentType($2.AppointmentType value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasAppointmentType() => $_has(2);
@$pb.TagNumber(3)
void clearAppointmentType() => $_clearField(3);
}
class GetBookingContextResponse extends $pb.GeneratedMessage {