Latest generation

This commit is contained in:
ci core model
2026-02-19 13:57:36 +00:00
parent c00e8453f6
commit cc6ef0a72d
4 changed files with 48 additions and 6 deletions

View File

@@ -3562,13 +3562,18 @@ class GetBookingSegmentationsRequest extends $pb.GeneratedMessage {
@$core.Deprecated('This field is deprecated.')
$core.String? actorID,
$2.AppointmentType? appointmentType,
@$core.Deprecated('This field is deprecated.')
$core.Iterable<$2.Commission>? commissions,
$2.AppointmentContent? loading,
$2.AppointmentContent? unloading,
}) {
final result = create();
if (header != null) result.header = header;
if (actorID != null) result.actorID = actorID;
if (appointmentType != null) result.appointmentType = appointmentType;
if (commissions != null) result.commissions.addAll(commissions);
if (loading != null) result.loading = loading;
if (unloading != null) result.unloading = unloading;
return result;
}
@@ -3582,6 +3587,8 @@ class GetBookingSegmentationsRequest extends $pb.GeneratedMessage {
..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)
..pc<$2.Commission>(4, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $2.Commission.create)
..aOM<$2.AppointmentContent>(5, _omitFieldNames ? '' : 'Loading', protoName: 'Loading', subBuilder: $2.AppointmentContent.create)
..aOM<$2.AppointmentContent>(6, _omitFieldNames ? '' : 'Unloading', protoName: 'Unloading', subBuilder: $2.AppointmentContent.create)
..hasRequiredFields = false
;
@@ -3635,8 +3642,31 @@ class GetBookingSegmentationsRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(3)
void clearAppointmentType() => $_clearField(3);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(4)
$pb.PbList<$2.Commission> get commissions => $_getList(3);
@$pb.TagNumber(5)
$2.AppointmentContent get loading => $_getN(4);
@$pb.TagNumber(5)
set loading($2.AppointmentContent value) => $_setField(5, value);
@$pb.TagNumber(5)
$core.bool hasLoading() => $_has(4);
@$pb.TagNumber(5)
void clearLoading() => $_clearField(5);
@$pb.TagNumber(5)
$2.AppointmentContent ensureLoading() => $_ensure(4);
@$pb.TagNumber(6)
$2.AppointmentContent get unloading => $_getN(5);
@$pb.TagNumber(6)
set unloading($2.AppointmentContent value) => $_setField(6, value);
@$pb.TagNumber(6)
$core.bool hasUnloading() => $_has(5);
@$pb.TagNumber(6)
void clearUnloading() => $_clearField(6);
@$pb.TagNumber(6)
$2.AppointmentContent ensureUnloading() => $_ensure(5);
}
class GetBookingSegmentationsResponse extends $pb.GeneratedMessage {