Latest generation

This commit is contained in:
ci core model
2025-08-05 13:20:13 +00:00
parent 2adecb73a7
commit d5ed3d038e
8 changed files with 158 additions and 18 deletions

View File

@@ -1949,6 +1949,7 @@ class BookAppointmentRequest extends $pb.GeneratedMessage {
$core.Iterable<$core.String>? emails,
$core.String? carrierID,
$core.String? carrierName,
$core.String? appointmentID,
}) {
final result = create();
if (header != null) result.header = header;
@@ -1960,6 +1961,7 @@ class BookAppointmentRequest extends $pb.GeneratedMessage {
if (emails != null) result.emails.addAll(emails);
if (carrierID != null) result.carrierID = carrierID;
if (carrierName != null) result.carrierName = carrierName;
if (appointmentID != null) result.appointmentID = appointmentID;
return result;
}
@@ -1978,6 +1980,7 @@ class BookAppointmentRequest extends $pb.GeneratedMessage {
..pPS(8, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
..aOS(9, _omitFieldNames ? '' : 'CarrierID', protoName: 'CarrierID')
..aOS(10, _omitFieldNames ? '' : 'CarrierName', protoName: 'CarrierName')
..aOS(11, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
..hasRequiredFields = false
;
@@ -2059,6 +2062,16 @@ class BookAppointmentRequest extends $pb.GeneratedMessage {
$core.bool hasCarrierName() => $_has(8);
@$pb.TagNumber(10)
void clearCarrierName() => $_clearField(10);
/// The appointment ID, usually generated using siteCounterServices
@$pb.TagNumber(11)
$core.String get appointmentID => $_getSZ(9);
@$pb.TagNumber(11)
set appointmentID($core.String value) => $_setString(9, value);
@$pb.TagNumber(11)
$core.bool hasAppointmentID() => $_has(9);
@$pb.TagNumber(11)
void clearAppointmentID() => $_clearField(11);
}
/// BookAppointment
@@ -2074,6 +2087,8 @@ class BookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
$core.Iterable<$core.String>? emails,
$core.String? carrierID,
$core.String? carrierName,
$core.String? appointmentID,
$core.String? reason,
}) {
final result = create();
if (header != null) result.header = header;
@@ -2086,6 +2101,8 @@ class BookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
if (emails != null) result.emails.addAll(emails);
if (carrierID != null) result.carrierID = carrierID;
if (carrierName != null) result.carrierName = carrierName;
if (appointmentID != null) result.appointmentID = appointmentID;
if (reason != null) result.reason = reason;
return result;
}
@@ -2105,6 +2122,8 @@ class BookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
..pPS(8, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
..aOS(9, _omitFieldNames ? '' : 'CarrierID', protoName: 'CarrierID')
..aOS(10, _omitFieldNames ? '' : 'CarrierName', protoName: 'CarrierName')
..aOS(11, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
..aOS(12, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..hasRequiredFields = false
;
@@ -2196,6 +2215,26 @@ class BookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
$core.bool hasCarrierName() => $_has(9);
@$pb.TagNumber(10)
void clearCarrierName() => $_clearField(10);
/// The appointment ID, usually generated using siteCounterServices
@$pb.TagNumber(11)
$core.String get appointmentID => $_getSZ(10);
@$pb.TagNumber(11)
set appointmentID($core.String value) => $_setString(10, value);
@$pb.TagNumber(11)
$core.bool hasAppointmentID() => $_has(10);
@$pb.TagNumber(11)
void clearAppointmentID() => $_clearField(11);
/// The Reason for which the appointment has no commissions
@$pb.TagNumber(12)
$core.String get reason => $_getSZ(11);
@$pb.TagNumber(12)
set reason($core.String value) => $_setString(11, value);
@$pb.TagNumber(12)
$core.bool hasReason() => $_has(11);
@$pb.TagNumber(12)
void clearReason() => $_clearField(12);
}
/// BookAppointment
@@ -2211,6 +2250,7 @@ class WMSBookAppointmentRequest extends $pb.GeneratedMessage {
$core.String? carrierID,
$core.String? carrierName,
$core.String? timeZone,
$core.String? appointmentID,
}) {
final result = create();
if (header != null) result.header = header;
@@ -2223,6 +2263,7 @@ class WMSBookAppointmentRequest extends $pb.GeneratedMessage {
if (carrierID != null) result.carrierID = carrierID;
if (carrierName != null) result.carrierName = carrierName;
if (timeZone != null) result.timeZone = timeZone;
if (appointmentID != null) result.appointmentID = appointmentID;
return result;
}
@@ -2242,6 +2283,7 @@ class WMSBookAppointmentRequest extends $pb.GeneratedMessage {
..aOS(9, _omitFieldNames ? '' : 'CarrierID', protoName: 'CarrierID')
..aOS(10, _omitFieldNames ? '' : 'CarrierName', protoName: 'CarrierName')
..aOS(11, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
..aOS(12, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
..hasRequiredFields = false
;
@@ -2333,6 +2375,16 @@ class WMSBookAppointmentRequest extends $pb.GeneratedMessage {
$core.bool hasTimeZone() => $_has(9);
@$pb.TagNumber(11)
void clearTimeZone() => $_clearField(11);
/// The appointment ID, usually generated using siteCounterServices
@$pb.TagNumber(12)
$core.String get appointmentID => $_getSZ(10);
@$pb.TagNumber(12)
set appointmentID($core.String value) => $_setString(10, value);
@$pb.TagNumber(12)
$core.bool hasAppointmentID() => $_has(10);
@$pb.TagNumber(12)
void clearAppointmentID() => $_clearField(12);
}
/// BookAppointment
@@ -2349,6 +2401,8 @@ class WMSBookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
$core.String? carrierID,
$core.String? carrierName,
$core.String? timeZone,
$core.String? appointmentID,
$core.String? reason,
}) {
final result = create();
if (header != null) result.header = header;
@@ -2362,6 +2416,8 @@ class WMSBookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
if (carrierID != null) result.carrierID = carrierID;
if (carrierName != null) result.carrierName = carrierName;
if (timeZone != null) result.timeZone = timeZone;
if (appointmentID != null) result.appointmentID = appointmentID;
if (reason != null) result.reason = reason;
return result;
}
@@ -2382,6 +2438,8 @@ class WMSBookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
..aOS(9, _omitFieldNames ? '' : 'CarrierID', protoName: 'CarrierID')
..aOS(10, _omitFieldNames ? '' : 'CarrierName', protoName: 'CarrierName')
..aOS(11, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
..aOS(12, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
..aOS(13, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..hasRequiredFields = false
;
@@ -2483,6 +2541,26 @@ class WMSBookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
$core.bool hasTimeZone() => $_has(10);
@$pb.TagNumber(11)
void clearTimeZone() => $_clearField(11);
/// The appointment ID, usually generated using siteCounterServices
@$pb.TagNumber(12)
$core.String get appointmentID => $_getSZ(11);
@$pb.TagNumber(12)
set appointmentID($core.String value) => $_setString(11, value);
@$pb.TagNumber(12)
$core.bool hasAppointmentID() => $_has(11);
@$pb.TagNumber(12)
void clearAppointmentID() => $_clearField(12);
/// The Reason for which the appointment has no commissions
@$pb.TagNumber(13)
$core.String get reason => $_getSZ(12);
@$pb.TagNumber(13)
set reason($core.String value) => $_setString(12, value);
@$pb.TagNumber(13)
$core.bool hasReason() => $_has(12);
@$pb.TagNumber(13)
void clearReason() => $_clearField(13);
}
class BookAppointmentResponse extends $pb.GeneratedMessage {