Latest generation

This commit is contained in:
ci core model
2025-08-05 14:35:16 +00:00
parent d5ed3d038e
commit c701d0a4e6
4 changed files with 37 additions and 6 deletions

View File

@@ -2721,11 +2721,13 @@ class UpdateSlotAppointmentRequest extends $pb.GeneratedMessage {
$3.RequestSiteHeader? header,
$core.String? appointmentID,
$core.Iterable<$2.Slot>? slots,
$core.String? timeZone,
}) {
final result = create();
if (header != null) result.header = header;
if (appointmentID != null) result.appointmentID = appointmentID;
if (slots != null) result.slots.addAll(slots);
if (timeZone != null) result.timeZone = timeZone;
return result;
}
@@ -2738,6 +2740,7 @@ class UpdateSlotAppointmentRequest extends $pb.GeneratedMessage {
..aOM<$3.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestSiteHeader.create)
..aOS(2, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
..pc<$2.Slot>(3, _omitFieldNames ? '' : 'Slots', $pb.PbFieldType.PM, protoName: 'Slots', subBuilder: $2.Slot.create)
..aOS(4, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
..hasRequiredFields = false
;
@@ -2778,9 +2781,19 @@ class UpdateSlotAppointmentRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
void clearAppointmentID() => $_clearField(2);
/// The slot to book for the appointment
/// The slots to book for the appointment
@$pb.TagNumber(3)
$pb.PbList<$2.Slot> get slots => $_getList(2);
/// time zone, useful only if a WMS use this API
@$pb.TagNumber(4)
$core.String get timeZone => $_getSZ(3);
@$pb.TagNumber(4)
set timeZone($core.String value) => $_setString(3, value);
@$pb.TagNumber(4)
$core.bool hasTimeZone() => $_has(3);
@$pb.TagNumber(4)
void clearTimeZone() => $_clearField(4);
}
class UpdateSlotAppointmentResponse extends $pb.GeneratedMessage {
@@ -2835,12 +2848,14 @@ class UpdateCommissionsAppointmentRequest extends $pb.GeneratedMessage {
$core.String? appointmentID,
$core.Iterable<$2.Slot>? slots,
$core.Iterable<$2.Commission>? commissions,
$core.String? timeZone,
}) {
final result = create();
if (header != null) result.header = header;
if (appointmentID != null) result.appointmentID = appointmentID;
if (slots != null) result.slots.addAll(slots);
if (commissions != null) result.commissions.addAll(commissions);
if (timeZone != null) result.timeZone = timeZone;
return result;
}
@@ -2854,6 +2869,7 @@ class UpdateCommissionsAppointmentRequest extends $pb.GeneratedMessage {
..aOS(2, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
..pc<$2.Slot>(3, _omitFieldNames ? '' : 'Slots', $pb.PbFieldType.PM, protoName: 'Slots', subBuilder: $2.Slot.create)
..pc<$2.Commission>(4, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $2.Commission.create)
..aOS(5, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
..hasRequiredFields = false
;
@@ -2894,12 +2910,23 @@ class UpdateCommissionsAppointmentRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
void clearAppointmentID() => $_clearField(2);
/// The slot to book for the appointment
/// The slots to book for the appointment
@$pb.TagNumber(3)
$pb.PbList<$2.Slot> get slots => $_getList(2);
/// The modified Commissions for the appointment
@$pb.TagNumber(4)
$pb.PbList<$2.Commission> get commissions => $_getList(3);
/// time zone, useful only if a WMS use this API
@$pb.TagNumber(5)
$core.String get timeZone => $_getSZ(4);
@$pb.TagNumber(5)
set timeZone($core.String value) => $_setString(4, value);
@$pb.TagNumber(5)
$core.bool hasTimeZone() => $_has(4);
@$pb.TagNumber(5)
void clearTimeZone() => $_clearField(5);
}
class UpdateCommissionsAppointmentResponse extends $pb.GeneratedMessage {