Latest generation

This commit is contained in:
ci core model
2026-01-28 10:58:43 +00:00
parent c6e7024d82
commit f1f26099a5
5 changed files with 34 additions and 18 deletions

View File

@@ -2775,6 +2775,7 @@ class WMSUpdateAppointmentRequest extends $pb.GeneratedMessage {
$core.Iterable<$2.Slot>? slots,
$core.Iterable<$2.WMSCommission>? commissions,
$core.String? actorID,
$core.String? reason,
$core.String? timeZone,
$core.Iterable<$3.CustomField>? customFields,
}) {
@@ -2784,6 +2785,7 @@ class WMSUpdateAppointmentRequest extends $pb.GeneratedMessage {
if (slots != null) result.slots.addAll(slots);
if (commissions != null) result.commissions.addAll(commissions);
if (actorID != null) result.actorID = actorID;
if (reason != null) result.reason = reason;
if (timeZone != null) result.timeZone = timeZone;
if (customFields != null) result.customFields.addAll(customFields);
return result;
@@ -2800,6 +2802,7 @@ class WMSUpdateAppointmentRequest extends $pb.GeneratedMessage {
..pc<$2.Slot>(3, _omitFieldNames ? '' : 'Slots', $pb.PbFieldType.PM, protoName: 'Slots', subBuilder: $2.Slot.create)
..pc<$2.WMSCommission>(4, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $2.WMSCommission.create)
..aOS(5, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..aOS(7, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..aOS(8, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
..pc<$3.CustomField>(9, _omitFieldNames ? '' : 'CustomFields', $pb.PbFieldType.PM, protoName: 'CustomFields', subBuilder: $3.CustomField.create)
..hasRequiredFields = false
@@ -2859,18 +2862,28 @@ class WMSUpdateAppointmentRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(5)
void clearActorID() => $_clearField(5);
/// In case of no reference, The Reason for which the appointment has no commissions
@$pb.TagNumber(7)
$core.String get reason => $_getSZ(5);
@$pb.TagNumber(7)
set reason($core.String value) => $_setString(5, value);
@$pb.TagNumber(7)
$core.bool hasReason() => $_has(5);
@$pb.TagNumber(7)
void clearReason() => $_clearField(7);
/// time zone, useful only if a WMS send a message
@$pb.TagNumber(8)
$core.String get timeZone => $_getSZ(5);
$core.String get timeZone => $_getSZ(6);
@$pb.TagNumber(8)
set timeZone($core.String value) => $_setString(5, value);
set timeZone($core.String value) => $_setString(6, value);
@$pb.TagNumber(8)
$core.bool hasTimeZone() => $_has(5);
$core.bool hasTimeZone() => $_has(6);
@$pb.TagNumber(8)
void clearTimeZone() => $_clearField(8);
@$pb.TagNumber(9)
$pb.PbList<$3.CustomField> get customFields => $_getList(6);
$pb.PbList<$3.CustomField> get customFields => $_getList(7);
}
class DeleteSettingsRequest extends $pb.GeneratedMessage {