You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
Lib version: 1.12.0-SNAPSHOT-251009084729
|
Lib version: 1.12.0-SNAPSHOT-251009115103
|
||||||
|
|||||||
@@ -1388,6 +1388,7 @@ class GetAvailableSlotsRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? startDate,
|
$core.String? startDate,
|
||||||
$core.String? endDate,
|
$core.String? endDate,
|
||||||
$core.Iterable<$core.String>? skippedAppointmentIDs,
|
$core.Iterable<$core.String>? skippedAppointmentIDs,
|
||||||
|
$core.String? actorID,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (header != null) result.header = header;
|
if (header != null) result.header = header;
|
||||||
@@ -1397,6 +1398,7 @@ class GetAvailableSlotsRequest extends $pb.GeneratedMessage {
|
|||||||
if (startDate != null) result.startDate = startDate;
|
if (startDate != null) result.startDate = startDate;
|
||||||
if (endDate != null) result.endDate = endDate;
|
if (endDate != null) result.endDate = endDate;
|
||||||
if (skippedAppointmentIDs != null) result.skippedAppointmentIDs.addAll(skippedAppointmentIDs);
|
if (skippedAppointmentIDs != null) result.skippedAppointmentIDs.addAll(skippedAppointmentIDs);
|
||||||
|
if (actorID != null) result.actorID = actorID;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1413,6 +1415,7 @@ class GetAvailableSlotsRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(5, _omitFieldNames ? '' : 'StartDate', protoName: 'StartDate')
|
..aOS(5, _omitFieldNames ? '' : 'StartDate', protoName: 'StartDate')
|
||||||
..aOS(6, _omitFieldNames ? '' : 'EndDate', protoName: 'EndDate')
|
..aOS(6, _omitFieldNames ? '' : 'EndDate', protoName: 'EndDate')
|
||||||
..pPS(7, _omitFieldNames ? '' : 'SkippedAppointmentIDs', protoName: 'SkippedAppointmentIDs')
|
..pPS(7, _omitFieldNames ? '' : 'SkippedAppointmentIDs', protoName: 'SkippedAppointmentIDs')
|
||||||
|
..aOS(8, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -1483,6 +1486,15 @@ class GetAvailableSlotsRequest extends $pb.GeneratedMessage {
|
|||||||
/// Optional, needed to skip counting those appointments in the capacity rules
|
/// Optional, needed to skip counting those appointments in the capacity rules
|
||||||
@$pb.TagNumber(7)
|
@$pb.TagNumber(7)
|
||||||
$pb.PbList<$core.String> get skippedAppointmentIDs => $_getList(6);
|
$pb.PbList<$core.String> get skippedAppointmentIDs => $_getList(6);
|
||||||
|
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
$core.String get actorID => $_getSZ(7);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
set actorID($core.String value) => $_setString(7, value);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
$core.bool hasActorID() => $_has(7);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
void clearActorID() => $_clearField(8);
|
||||||
}
|
}
|
||||||
|
|
||||||
class GetAvailableSlotsResponse extends $pb.GeneratedMessage {
|
class GetAvailableSlotsResponse extends $pb.GeneratedMessage {
|
||||||
@@ -1663,6 +1675,7 @@ class BookAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? carrierName,
|
$core.String? carrierName,
|
||||||
$core.String? appointmentID,
|
$core.String? appointmentID,
|
||||||
$core.bool? instructionAck,
|
$core.bool? instructionAck,
|
||||||
|
$core.String? actorID,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (header != null) result.header = header;
|
if (header != null) result.header = header;
|
||||||
@@ -1676,6 +1689,7 @@ class BookAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
if (carrierName != null) result.carrierName = carrierName;
|
if (carrierName != null) result.carrierName = carrierName;
|
||||||
if (appointmentID != null) result.appointmentID = appointmentID;
|
if (appointmentID != null) result.appointmentID = appointmentID;
|
||||||
if (instructionAck != null) result.instructionAck = instructionAck;
|
if (instructionAck != null) result.instructionAck = instructionAck;
|
||||||
|
if (actorID != null) result.actorID = actorID;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1696,6 +1710,7 @@ class BookAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(10, _omitFieldNames ? '' : 'CarrierName', protoName: 'CarrierName')
|
..aOS(10, _omitFieldNames ? '' : 'CarrierName', protoName: 'CarrierName')
|
||||||
..aOS(11, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
|
..aOS(11, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
|
||||||
..aOB(12, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
|
..aOB(12, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
|
||||||
|
..aOS(13, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -1797,6 +1812,15 @@ class BookAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
$core.bool hasInstructionAck() => $_has(10);
|
$core.bool hasInstructionAck() => $_has(10);
|
||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
void clearInstructionAck() => $_clearField(12);
|
void clearInstructionAck() => $_clearField(12);
|
||||||
|
|
||||||
|
@$pb.TagNumber(13)
|
||||||
|
$core.String get actorID => $_getSZ(11);
|
||||||
|
@$pb.TagNumber(13)
|
||||||
|
set actorID($core.String value) => $_setString(11, value);
|
||||||
|
@$pb.TagNumber(13)
|
||||||
|
$core.bool hasActorID() => $_has(11);
|
||||||
|
@$pb.TagNumber(13)
|
||||||
|
void clearActorID() => $_clearField(13);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// BookAppointmentNoReference
|
/// BookAppointmentNoReference
|
||||||
@@ -1815,6 +1839,7 @@ class BookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? appointmentID,
|
$core.String? appointmentID,
|
||||||
$core.String? reason,
|
$core.String? reason,
|
||||||
$core.bool? instructionAck,
|
$core.bool? instructionAck,
|
||||||
|
$core.String? actorID,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (header != null) result.header = header;
|
if (header != null) result.header = header;
|
||||||
@@ -1830,6 +1855,7 @@ class BookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
|
|||||||
if (appointmentID != null) result.appointmentID = appointmentID;
|
if (appointmentID != null) result.appointmentID = appointmentID;
|
||||||
if (reason != null) result.reason = reason;
|
if (reason != null) result.reason = reason;
|
||||||
if (instructionAck != null) result.instructionAck = instructionAck;
|
if (instructionAck != null) result.instructionAck = instructionAck;
|
||||||
|
if (actorID != null) result.actorID = actorID;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1852,6 +1878,7 @@ class BookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(11, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
|
..aOS(11, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
|
||||||
..aOS(12, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
..aOS(12, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
||||||
..aOB(13, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
|
..aOB(13, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
|
||||||
|
..aOS(14, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -1973,6 +2000,15 @@ class BookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
|
|||||||
$core.bool hasInstructionAck() => $_has(12);
|
$core.bool hasInstructionAck() => $_has(12);
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
void clearInstructionAck() => $_clearField(13);
|
void clearInstructionAck() => $_clearField(13);
|
||||||
|
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
$core.String get actorID => $_getSZ(13);
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
set actorID($core.String value) => $_setString(13, value);
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
$core.bool hasActorID() => $_has(13);
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
void clearActorID() => $_clearField(14);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ForceBookAppointment
|
/// ForceBookAppointment
|
||||||
@@ -1993,6 +2029,7 @@ class ForceBookAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? projectID,
|
$core.String? projectID,
|
||||||
$core.String? reason,
|
$core.String? reason,
|
||||||
$core.Iterable<$2.QuantityByUnit>? quantities,
|
$core.Iterable<$2.QuantityByUnit>? quantities,
|
||||||
|
$core.String? actorID,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (header != null) result.header = header;
|
if (header != null) result.header = header;
|
||||||
@@ -2010,6 +2047,7 @@ class ForceBookAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
if (projectID != null) result.projectID = projectID;
|
if (projectID != null) result.projectID = projectID;
|
||||||
if (reason != null) result.reason = reason;
|
if (reason != null) result.reason = reason;
|
||||||
if (quantities != null) result.quantities.addAll(quantities);
|
if (quantities != null) result.quantities.addAll(quantities);
|
||||||
|
if (actorID != null) result.actorID = actorID;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2034,6 +2072,7 @@ class ForceBookAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(14, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
..aOS(14, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||||
..aOS(15, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
..aOS(15, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
||||||
..pc<$2.QuantityByUnit>(16, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: $2.QuantityByUnit.create)
|
..pc<$2.QuantityByUnit>(16, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: $2.QuantityByUnit.create)
|
||||||
|
..aOS(17, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -2169,6 +2208,15 @@ class ForceBookAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
/// In case of no reference, quantities loaded or to load in the truck
|
/// In case of no reference, quantities loaded or to load in the truck
|
||||||
@$pb.TagNumber(16)
|
@$pb.TagNumber(16)
|
||||||
$pb.PbList<$2.QuantityByUnit> get quantities => $_getList(14);
|
$pb.PbList<$2.QuantityByUnit> get quantities => $_getList(14);
|
||||||
|
|
||||||
|
@$pb.TagNumber(17)
|
||||||
|
$core.String get actorID => $_getSZ(15);
|
||||||
|
@$pb.TagNumber(17)
|
||||||
|
set actorID($core.String value) => $_setString(15, value);
|
||||||
|
@$pb.TagNumber(17)
|
||||||
|
$core.bool hasActorID() => $_has(15);
|
||||||
|
@$pb.TagNumber(17)
|
||||||
|
void clearActorID() => $_clearField(17);
|
||||||
}
|
}
|
||||||
|
|
||||||
class BookAppointmentResponse extends $pb.GeneratedMessage {
|
class BookAppointmentResponse extends $pb.GeneratedMessage {
|
||||||
@@ -2330,12 +2378,14 @@ class UpdateAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? appointmentID,
|
$core.String? appointmentID,
|
||||||
$core.Iterable<$2.Slot>? slots,
|
$core.Iterable<$2.Slot>? slots,
|
||||||
$core.Iterable<$2.Commission>? commissions,
|
$core.Iterable<$2.Commission>? commissions,
|
||||||
|
$core.String? actorID,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (header != null) result.header = header;
|
if (header != null) result.header = header;
|
||||||
if (appointmentID != null) result.appointmentID = appointmentID;
|
if (appointmentID != null) result.appointmentID = appointmentID;
|
||||||
if (slots != null) result.slots.addAll(slots);
|
if (slots != null) result.slots.addAll(slots);
|
||||||
if (commissions != null) result.commissions.addAll(commissions);
|
if (commissions != null) result.commissions.addAll(commissions);
|
||||||
|
if (actorID != null) result.actorID = actorID;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2349,6 +2399,7 @@ class UpdateAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(2, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
|
..aOS(2, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
|
||||||
..pc<$2.Slot>(3, _omitFieldNames ? '' : 'Slots', $pb.PbFieldType.PM, protoName: 'Slots', subBuilder: $2.Slot.create)
|
..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)
|
..pc<$2.Commission>(4, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $2.Commission.create)
|
||||||
|
..aOS(5, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -2396,6 +2447,15 @@ class UpdateAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
/// The modified Commissions for the appointment
|
/// The modified Commissions for the appointment
|
||||||
@$pb.TagNumber(4)
|
@$pb.TagNumber(4)
|
||||||
$pb.PbList<$2.Commission> get commissions => $_getList(3);
|
$pb.PbList<$2.Commission> get commissions => $_getList(3);
|
||||||
|
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
$core.String get actorID => $_getSZ(4);
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
set actorID($core.String value) => $_setString(4, value);
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
$core.bool hasActorID() => $_has(4);
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
void clearActorID() => $_clearField(5);
|
||||||
}
|
}
|
||||||
|
|
||||||
class UpdateAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
|
class UpdateAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
|
||||||
@@ -2406,6 +2466,7 @@ class UpdateAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? projectID,
|
$core.String? projectID,
|
||||||
$core.Iterable<$2.QuantityByUnit>? quantities,
|
$core.Iterable<$2.QuantityByUnit>? quantities,
|
||||||
$core.String? reason,
|
$core.String? reason,
|
||||||
|
$core.String? actorID,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (header != null) result.header = header;
|
if (header != null) result.header = header;
|
||||||
@@ -2414,6 +2475,7 @@ class UpdateAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
|
|||||||
if (projectID != null) result.projectID = projectID;
|
if (projectID != null) result.projectID = projectID;
|
||||||
if (quantities != null) result.quantities.addAll(quantities);
|
if (quantities != null) result.quantities.addAll(quantities);
|
||||||
if (reason != null) result.reason = reason;
|
if (reason != null) result.reason = reason;
|
||||||
|
if (actorID != null) result.actorID = actorID;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2429,6 +2491,7 @@ class UpdateAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(4, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
..aOS(4, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||||
..pc<$2.QuantityByUnit>(5, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: $2.QuantityByUnit.create)
|
..pc<$2.QuantityByUnit>(5, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: $2.QuantityByUnit.create)
|
||||||
..aOS(6, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
..aOS(6, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
||||||
|
..aOS(7, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -2496,6 +2559,15 @@ class UpdateAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
|
|||||||
$core.bool hasReason() => $_has(5);
|
$core.bool hasReason() => $_has(5);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
void clearReason() => $_clearField(6);
|
void clearReason() => $_clearField(6);
|
||||||
|
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
$core.String get actorID => $_getSZ(6);
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
set actorID($core.String value) => $_setString(6, value);
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
$core.bool hasActorID() => $_has(6);
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
void clearActorID() => $_clearField(7);
|
||||||
}
|
}
|
||||||
|
|
||||||
class ForceUpdateAppointmentRequest extends $pb.GeneratedMessage {
|
class ForceUpdateAppointmentRequest extends $pb.GeneratedMessage {
|
||||||
@@ -2508,6 +2580,7 @@ class ForceUpdateAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? projectID,
|
$core.String? projectID,
|
||||||
$core.Iterable<$2.QuantityByUnit>? quantities,
|
$core.Iterable<$2.QuantityByUnit>? quantities,
|
||||||
$core.String? reason,
|
$core.String? reason,
|
||||||
|
$core.String? actorID,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (header != null) result.header = header;
|
if (header != null) result.header = header;
|
||||||
@@ -2518,6 +2591,7 @@ class ForceUpdateAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
if (projectID != null) result.projectID = projectID;
|
if (projectID != null) result.projectID = projectID;
|
||||||
if (quantities != null) result.quantities.addAll(quantities);
|
if (quantities != null) result.quantities.addAll(quantities);
|
||||||
if (reason != null) result.reason = reason;
|
if (reason != null) result.reason = reason;
|
||||||
|
if (actorID != null) result.actorID = actorID;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2535,6 +2609,7 @@ class ForceUpdateAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(6, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
..aOS(6, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||||
..pc<$2.QuantityByUnit>(7, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: $2.QuantityByUnit.create)
|
..pc<$2.QuantityByUnit>(7, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: $2.QuantityByUnit.create)
|
||||||
..aOS(8, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
..aOS(8, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
||||||
|
..aOS(9, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -2616,6 +2691,15 @@ class ForceUpdateAppointmentRequest extends $pb.GeneratedMessage {
|
|||||||
$core.bool hasReason() => $_has(7);
|
$core.bool hasReason() => $_has(7);
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
void clearReason() => $_clearField(8);
|
void clearReason() => $_clearField(8);
|
||||||
|
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
$core.String get actorID => $_getSZ(8);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
set actorID($core.String value) => $_setString(8, value);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
$core.bool hasActorID() => $_has(8);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
void clearActorID() => $_clearField(9);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ListUserSites
|
/// ListUserSites
|
||||||
|
|||||||
@@ -362,6 +362,7 @@ const GetAvailableSlotsRequest$json = {
|
|||||||
{'1': 'StartDate', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'StartDate'},
|
{'1': 'StartDate', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'StartDate'},
|
||||||
{'1': 'EndDate', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'EndDate'},
|
{'1': 'EndDate', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'EndDate'},
|
||||||
{'1': 'SkippedAppointmentIDs', '3': 7, '4': 3, '5': 9, '10': 'SkippedAppointmentIDs'},
|
{'1': 'SkippedAppointmentIDs', '3': 7, '4': 3, '5': 9, '10': 'SkippedAppointmentIDs'},
|
||||||
|
{'1': 'ActorID', '3': 8, '4': 1, '5': 9, '10': 'ActorID'},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
@@ -377,7 +378,8 @@ final $typed_data.Uint8List getAvailableSlotsRequestDescriptor = $convert.base64
|
|||||||
'Mn0tKDBbMS05XXwxWzAtMl0pLSgwWzEtOV18WzEyXVswLTldfDNbMDFdKSRSCVN0YXJ0RGF0ZR'
|
'Mn0tKDBbMS05XXwxWzAtMl0pLSgwWzEtOV18WzEyXVswLTldfDNbMDFdKSRSCVN0YXJ0RGF0ZR'
|
||||||
'JWCgdFbmREYXRlGAYgASgJQjz6QjlyNzI1XjIwWzAtOV17Mn0tKDBbMS05XXwxWzAtMl0pLSgw'
|
'JWCgdFbmREYXRlGAYgASgJQjz6QjlyNzI1XjIwWzAtOV17Mn0tKDBbMS05XXwxWzAtMl0pLSgw'
|
||||||
'WzEtOV18WzEyXVswLTldfDNbMDFdKSRSB0VuZERhdGUSNAoVU2tpcHBlZEFwcG9pbnRtZW50SU'
|
'WzEtOV18WzEyXVswLTldfDNbMDFdKSRSB0VuZERhdGUSNAoVU2tpcHBlZEFwcG9pbnRtZW50SU'
|
||||||
'RzGAcgAygJUhVTa2lwcGVkQXBwb2ludG1lbnRJRHM6DpJBCwoJ0gEGSGVhZGVy');
|
'RzGAcgAygJUhVTa2lwcGVkQXBwb2ludG1lbnRJRHMSGAoHQWN0b3JJRBgIIAEoCVIHQWN0b3JJ'
|
||||||
|
'RDowkkEtCivSAQZIZWFkZXLSARVTZWdtZW50YXRpb25TZWxlY3Rpb27SAQdBY3RvcklE');
|
||||||
|
|
||||||
@$core.Deprecated('Use getAvailableSlotsResponseDescriptor instead')
|
@$core.Deprecated('Use getAvailableSlotsResponseDescriptor instead')
|
||||||
const GetAvailableSlotsResponse$json = {
|
const GetAvailableSlotsResponse$json = {
|
||||||
@@ -439,6 +441,7 @@ const BookAppointmentRequest$json = {
|
|||||||
{'1': 'CarrierName', '3': 10, '4': 1, '5': 9, '10': 'CarrierName'},
|
{'1': 'CarrierName', '3': 10, '4': 1, '5': 9, '10': 'CarrierName'},
|
||||||
{'1': 'AppointmentID', '3': 11, '4': 1, '5': 9, '8': {}, '10': 'AppointmentID'},
|
{'1': 'AppointmentID', '3': 11, '4': 1, '5': 9, '8': {}, '10': 'AppointmentID'},
|
||||||
{'1': 'InstructionAck', '3': 12, '4': 1, '5': 8, '10': 'InstructionAck'},
|
{'1': 'InstructionAck', '3': 12, '4': 1, '5': 8, '10': 'InstructionAck'},
|
||||||
|
{'1': 'ActorID', '3': 13, '4': 1, '5': 9, '10': 'ActorID'},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
@@ -457,9 +460,9 @@ final $typed_data.Uint8List bookAppointmentRequestDescriptor = $convert.base64De
|
|||||||
'JlZmxleC5jb20iXfpCDpIBCwgBIgdyBWAB8AEBUgZFbWFpbHMSHAoJQ2FycmllcklEGAkgASgJ'
|
'JlZmxleC5jb20iXfpCDpIBCwgBIgdyBWAB8AEBUgZFbWFpbHMSHAoJQ2FycmllcklEGAkgASgJ'
|
||||||
'UglDYXJyaWVySUQSIAoLQ2Fycmllck5hbWUYCiABKAlSC0NhcnJpZXJOYW1lEjsKDUFwcG9pbn'
|
'UglDYXJyaWVySUQSIAoLQ2Fycmllck5hbWUYCiABKAlSC0NhcnJpZXJOYW1lEjsKDUFwcG9pbn'
|
||||||
'RtZW50SUQYCyABKAlCFZJBEooBD15bYS16QS1aMC05LV0rJFINQXBwb2ludG1lbnRJRBImCg5J'
|
'RtZW50SUQYCyABKAlCFZJBEooBD15bYS16QS1aMC05LV0rJFINQXBwb2ludG1lbnRJRBImCg5J'
|
||||||
'bnN0cnVjdGlvbkFjaxgMIAEoCFIOSW5zdHJ1Y3Rpb25BY2s6U5JBUApO0gEGSGVhZGVy0gEPQX'
|
'bnN0cnVjdGlvbkFjaxgMIAEoCFIOSW5zdHJ1Y3Rpb25BY2sSGAoHQWN0b3JJRBgNIAEoCVIHQW'
|
||||||
'Bwb2ludG1lbnRUeXBl0gELQ29tbWlzc2lvbnPSAQ1TZWdtZW50YXRpb25z0gESQ2Fycmllcklu'
|
'N0b3JJRDpdkkFaCljSAQZIZWFkZXLSAQ9BcHBvaW50bWVudFR5cGXSAQtDb21taXNzaW9uc9IB'
|
||||||
'Zm9ybWF0aW9u');
|
'DVNlZ21lbnRhdGlvbnPSARJDYXJyaWVySW5mb3JtYXRpb27SAQdBY3RvcklE');
|
||||||
|
|
||||||
@$core.Deprecated('Use bookAppointmentNoReferenceRequestDescriptor instead')
|
@$core.Deprecated('Use bookAppointmentNoReferenceRequestDescriptor instead')
|
||||||
const BookAppointmentNoReferenceRequest$json = {
|
const BookAppointmentNoReferenceRequest$json = {
|
||||||
@@ -478,6 +481,7 @@ const BookAppointmentNoReferenceRequest$json = {
|
|||||||
{'1': 'AppointmentID', '3': 11, '4': 1, '5': 9, '10': 'AppointmentID'},
|
{'1': 'AppointmentID', '3': 11, '4': 1, '5': 9, '10': 'AppointmentID'},
|
||||||
{'1': 'Reason', '3': 12, '4': 1, '5': 9, '10': 'Reason'},
|
{'1': 'Reason', '3': 12, '4': 1, '5': 9, '10': 'Reason'},
|
||||||
{'1': 'InstructionAck', '3': 13, '4': 1, '5': 8, '10': 'InstructionAck'},
|
{'1': 'InstructionAck', '3': 13, '4': 1, '5': 8, '10': 'InstructionAck'},
|
||||||
|
{'1': 'ActorID', '3': 14, '4': 1, '5': 9, '10': 'ActorID'},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
@@ -497,9 +501,9 @@ final $typed_data.Uint8List bookAppointmentNoReferenceRequestDescriptor = $conve
|
|||||||
'bGV4LmNvbSJd+kIOkgELCAEiB3IFYAHwAQFSBkVtYWlscxIcCglDYXJyaWVySUQYCSABKAlSCU'
|
'bGV4LmNvbSJd+kIOkgELCAEiB3IFYAHwAQFSBkVtYWlscxIcCglDYXJyaWVySUQYCSABKAlSCU'
|
||||||
'NhcnJpZXJJRBIgCgtDYXJyaWVyTmFtZRgKIAEoCVILQ2Fycmllck5hbWUSJAoNQXBwb2ludG1l'
|
'NhcnJpZXJJRBIgCgtDYXJyaWVyTmFtZRgKIAEoCVILQ2Fycmllck5hbWUSJAoNQXBwb2ludG1l'
|
||||||
'bnRJRBgLIAEoCVINQXBwb2ludG1lbnRJRBIWCgZSZWFzb24YDCABKAlSBlJlYXNvbhImCg5Jbn'
|
'bnRJRBgLIAEoCVINQXBwb2ludG1lbnRJRBIWCgZSZWFzb24YDCABKAlSBlJlYXNvbhImCg5Jbn'
|
||||||
'N0cnVjdGlvbkFjaxgNIAEoCFIOSW5zdHJ1Y3Rpb25BY2s6XpJBWwpZ0gEGSGVhZGVy0gEPQXBw'
|
'N0cnVjdGlvbkFjaxgNIAEoCFIOSW5zdHJ1Y3Rpb25BY2sSGAoHQWN0b3JJRBgOIAEoCVIHQWN0'
|
||||||
'b2ludG1lbnRUeXBl0gEJUHJvamVjdElE0gEKUXVhbnRpdGllc9IBDVNlZ21lbnRhdGlvbnPSAR'
|
'b3JJRDpokkFlCmPSAQZIZWFkZXLSAQ9BcHBvaW50bWVudFR5cGXSAQlQcm9qZWN0SUTSAQpRdW'
|
||||||
'JDYXJyaWVySW5mb3JtYXRpb24=');
|
'FudGl0aWVz0gENU2VnbWVudGF0aW9uc9IBEkNhcnJpZXJJbmZvcm1hdGlvbtIBB0FjdG9ySUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use forceBookAppointmentRequestDescriptor instead')
|
@$core.Deprecated('Use forceBookAppointmentRequestDescriptor instead')
|
||||||
const ForceBookAppointmentRequest$json = {
|
const ForceBookAppointmentRequest$json = {
|
||||||
@@ -520,6 +524,7 @@ const ForceBookAppointmentRequest$json = {
|
|||||||
{'1': 'ProjectID', '3': 14, '4': 1, '5': 9, '10': 'ProjectID'},
|
{'1': 'ProjectID', '3': 14, '4': 1, '5': 9, '10': 'ProjectID'},
|
||||||
{'1': 'Reason', '3': 15, '4': 1, '5': 9, '10': 'Reason'},
|
{'1': 'Reason', '3': 15, '4': 1, '5': 9, '10': 'Reason'},
|
||||||
{'1': 'Quantities', '3': 16, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '10': 'Quantities'},
|
{'1': 'Quantities', '3': 16, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '10': 'Quantities'},
|
||||||
|
{'1': 'ActorID', '3': 17, '4': 1, '5': 9, '10': 'ActorID'},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
@@ -540,8 +545,9 @@ final $typed_data.Uint8List forceBookAppointmentRequestDescriptor = $convert.bas
|
|||||||
'ltZVpvbmUYCyABKAlSCFRpbWVab25lEiQKDUFwcG9pbnRtZW50SUQYDCABKAlSDUFwcG9pbnRt'
|
'ltZVpvbmUYCyABKAlSCFRpbWVab25lEiQKDUFwcG9pbnRtZW50SUQYDCABKAlSDUFwcG9pbnRt'
|
||||||
'ZW50SUQSJgoOSW5zdHJ1Y3Rpb25BY2sYDSABKAhSDkluc3RydWN0aW9uQWNrEhwKCVByb2plY3'
|
'ZW50SUQSJgoOSW5zdHJ1Y3Rpb25BY2sYDSABKAhSDkluc3RydWN0aW9uQWNrEhwKCVByb2plY3'
|
||||||
'RJRBgOIAEoCVIJUHJvamVjdElEEhYKBlJlYXNvbhgPIAEoCVIGUmVhc29uEjMKClF1YW50aXRp'
|
'RJRBgOIAEoCVIJUHJvamVjdElEEhYKBlJlYXNvbhgPIAEoCVIGUmVhc29uEjMKClF1YW50aXRp'
|
||||||
'ZXMYECADKAsyEy5hcGkuUXVhbnRpdHlCeVVuaXRSClF1YW50aXRpZXM6MJJBLQor0gEGSGVhZG'
|
'ZXMYECADKAsyEy5hcGkuUXVhbnRpdHlCeVVuaXRSClF1YW50aXRpZXMSGAoHQWN0b3JJRBgRIA'
|
||||||
'Vy0gEPQXBwb2ludG1lbnRUeXBl0gENU2VnbWVudGF0aW9ucw==');
|
'EoCVIHQWN0b3JJRDo6kkE3CjXSAQZIZWFkZXLSAQ9BcHBvaW50bWVudFR5cGXSAQ1TZWdtZW50'
|
||||||
|
'YXRpb25z0gEHQWN0b3JJRA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use bookAppointmentResponseDescriptor instead')
|
@$core.Deprecated('Use bookAppointmentResponseDescriptor instead')
|
||||||
const BookAppointmentResponse$json = {
|
const BookAppointmentResponse$json = {
|
||||||
@@ -594,6 +600,7 @@ const UpdateAppointmentRequest$json = {
|
|||||||
{'1': 'AppointmentID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'AppointmentID'},
|
{'1': 'AppointmentID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'AppointmentID'},
|
||||||
{'1': 'Slots', '3': 3, '4': 3, '5': 11, '6': '.api.Slot', '10': 'Slots'},
|
{'1': 'Slots', '3': 3, '4': 3, '5': 11, '6': '.api.Slot', '10': 'Slots'},
|
||||||
{'1': 'Commissions', '3': 4, '4': 3, '5': 11, '6': '.api.Commission', '10': 'Commissions'},
|
{'1': 'Commissions', '3': 4, '4': 3, '5': 11, '6': '.api.Commission', '10': 'Commissions'},
|
||||||
|
{'1': 'ActorID', '3': 5, '4': 1, '5': 9, '10': 'ActorID'},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
@@ -603,8 +610,9 @@ final $typed_data.Uint8List updateAppointmentRequestDescriptor = $convert.base64
|
|||||||
'ChhVcGRhdGVBcHBvaW50bWVudFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
'ChhVcGRhdGVBcHBvaW50bWVudFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
||||||
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEi0KDUFwcG9pbnRtZW50SUQYAiABKAlC'
|
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEi0KDUFwcG9pbnRtZW50SUQYAiABKAlC'
|
||||||
'B/pCBHICEAFSDUFwcG9pbnRtZW50SUQSHwoFU2xvdHMYAyADKAsyCS5hcGkuU2xvdFIFU2xvdH'
|
'B/pCBHICEAFSDUFwcG9pbnRtZW50SUQSHwoFU2xvdHMYAyADKAsyCS5hcGkuU2xvdFIFU2xvdH'
|
||||||
'MSMQoLQ29tbWlzc2lvbnMYBCADKAsyDy5hcGkuQ29tbWlzc2lvblILQ29tbWlzc2lvbnM6JpJB'
|
'MSMQoLQ29tbWlzc2lvbnMYBCADKAsyDy5hcGkuQ29tbWlzc2lvblILQ29tbWlzc2lvbnMSGAoH'
|
||||||
'Iwoh0gEGSGVhZGVy0gENQXBwb2ludG1lbnRJRNIBBVNsb3Rz');
|
'QWN0b3JJRBgFIAEoCVIHQWN0b3JJRDowkkEtCivSAQZIZWFkZXLSAQ1BcHBvaW50bWVudElE0g'
|
||||||
|
'EFU2xvdHPSAQdBY3RvcklE');
|
||||||
|
|
||||||
@$core.Deprecated('Use updateAppointmentNoReferenceRequestDescriptor instead')
|
@$core.Deprecated('Use updateAppointmentNoReferenceRequestDescriptor instead')
|
||||||
const UpdateAppointmentNoReferenceRequest$json = {
|
const UpdateAppointmentNoReferenceRequest$json = {
|
||||||
@@ -616,6 +624,7 @@ const UpdateAppointmentNoReferenceRequest$json = {
|
|||||||
{'1': 'ProjectID', '3': 4, '4': 1, '5': 9, '10': 'ProjectID'},
|
{'1': 'ProjectID', '3': 4, '4': 1, '5': 9, '10': 'ProjectID'},
|
||||||
{'1': 'Quantities', '3': 5, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '10': 'Quantities'},
|
{'1': 'Quantities', '3': 5, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '10': 'Quantities'},
|
||||||
{'1': 'Reason', '3': 6, '4': 1, '5': 9, '10': 'Reason'},
|
{'1': 'Reason', '3': 6, '4': 1, '5': 9, '10': 'Reason'},
|
||||||
|
{'1': 'ActorID', '3': 7, '4': 1, '5': 9, '10': 'ActorID'},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
@@ -627,7 +636,8 @@ final $typed_data.Uint8List updateAppointmentNoReferenceRequestDescriptor = $con
|
|||||||
'bnRJRBgCIAEoCUIH+kIEcgIQAVINQXBwb2ludG1lbnRJRBIfCgVTbG90cxgDIAMoCzIJLmFwaS'
|
'bnRJRBgCIAEoCUIH+kIEcgIQAVINQXBwb2ludG1lbnRJRBIfCgVTbG90cxgDIAMoCzIJLmFwaS'
|
||||||
'5TbG90UgVTbG90cxIcCglQcm9qZWN0SUQYBCABKAlSCVByb2plY3RJRBIzCgpRdWFudGl0aWVz'
|
'5TbG90UgVTbG90cxIcCglQcm9qZWN0SUQYBCABKAlSCVByb2plY3RJRBIzCgpRdWFudGl0aWVz'
|
||||||
'GAUgAygLMhMuYXBpLlF1YW50aXR5QnlVbml0UgpRdWFudGl0aWVzEhYKBlJlYXNvbhgGIAEoCV'
|
'GAUgAygLMhMuYXBpLlF1YW50aXR5QnlVbml0UgpRdWFudGl0aWVzEhYKBlJlYXNvbhgGIAEoCV'
|
||||||
'IGUmVhc29uOiaSQSMKIdIBBkhlYWRlctIBDUFwcG9pbnRtZW50SUTSAQVTbG90cw==');
|
'IGUmVhc29uEhgKB0FjdG9ySUQYByABKAlSB0FjdG9ySUQ6MJJBLQor0gEGSGVhZGVy0gENQXBw'
|
||||||
|
'b2ludG1lbnRJRNIBBVNsb3Rz0gEHQWN0b3JJRA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use forceUpdateAppointmentRequestDescriptor instead')
|
@$core.Deprecated('Use forceUpdateAppointmentRequestDescriptor instead')
|
||||||
const ForceUpdateAppointmentRequest$json = {
|
const ForceUpdateAppointmentRequest$json = {
|
||||||
@@ -641,6 +651,7 @@ const ForceUpdateAppointmentRequest$json = {
|
|||||||
{'1': 'ProjectID', '3': 6, '4': 1, '5': 9, '10': 'ProjectID'},
|
{'1': 'ProjectID', '3': 6, '4': 1, '5': 9, '10': 'ProjectID'},
|
||||||
{'1': 'Quantities', '3': 7, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '10': 'Quantities'},
|
{'1': 'Quantities', '3': 7, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '10': 'Quantities'},
|
||||||
{'1': 'Reason', '3': 8, '4': 1, '5': 9, '10': 'Reason'},
|
{'1': 'Reason', '3': 8, '4': 1, '5': 9, '10': 'Reason'},
|
||||||
|
{'1': 'ActorID', '3': 9, '4': 1, '5': 9, '10': 'ActorID'},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
@@ -653,8 +664,8 @@ final $typed_data.Uint8List forceUpdateAppointmentRequestDescriptor = $convert.b
|
|||||||
'VTbG90cxIxCgtDb21taXNzaW9ucxgEIAMoCzIPLmFwaS5Db21taXNzaW9uUgtDb21taXNzaW9u'
|
'VTbG90cxIxCgtDb21taXNzaW9ucxgEIAMoCzIPLmFwaS5Db21taXNzaW9uUgtDb21taXNzaW9u'
|
||||||
'cxIaCghUaW1lWm9uZRgFIAEoCVIIVGltZVpvbmUSHAoJUHJvamVjdElEGAYgASgJUglQcm9qZW'
|
'cxIaCghUaW1lWm9uZRgFIAEoCVIIVGltZVpvbmUSHAoJUHJvamVjdElEGAYgASgJUglQcm9qZW'
|
||||||
'N0SUQSMwoKUXVhbnRpdGllcxgHIAMoCzITLmFwaS5RdWFudGl0eUJ5VW5pdFIKUXVhbnRpdGll'
|
'N0SUQSMwoKUXVhbnRpdGllcxgHIAMoCzITLmFwaS5RdWFudGl0eUJ5VW5pdFIKUXVhbnRpdGll'
|
||||||
'cxIWCgZSZWFzb24YCCABKAlSBlJlYXNvbjomkkEjCiHSAQZIZWFkZXLSAQ1BcHBvaW50bWVudE'
|
'cxIWCgZSZWFzb24YCCABKAlSBlJlYXNvbhIYCgdBY3RvcklEGAkgASgJUgdBY3RvcklEOjCSQS'
|
||||||
'lE0gEFU2xvdHM=');
|
'0KK9IBBkhlYWRlctIBDUFwcG9pbnRtZW50SUTSAQVTbG90c9IBB0FjdG9ySUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use listUserSitesRequestDescriptor instead')
|
@$core.Deprecated('Use listUserSitesRequestDescriptor instead')
|
||||||
const ListUserSitesRequest$json = {
|
const ListUserSitesRequest$json = {
|
||||||
|
|||||||
@@ -1857,11 +1857,13 @@ class Commission extends $pb.GeneratedMessage {
|
|||||||
$core.String? projectID,
|
$core.String? projectID,
|
||||||
$core.String? orderID,
|
$core.String? orderID,
|
||||||
$core.Iterable<QuantityByUnit>? quantities,
|
$core.Iterable<QuantityByUnit>? quantities,
|
||||||
|
$core.String? actorID,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (projectID != null) result.projectID = projectID;
|
if (projectID != null) result.projectID = projectID;
|
||||||
if (orderID != null) result.orderID = orderID;
|
if (orderID != null) result.orderID = orderID;
|
||||||
if (quantities != null) result.quantities.addAll(quantities);
|
if (quantities != null) result.quantities.addAll(quantities);
|
||||||
|
if (actorID != null) result.actorID = actorID;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1874,6 +1876,7 @@ class Commission extends $pb.GeneratedMessage {
|
|||||||
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||||
..aOS(2, _omitFieldNames ? '' : 'OrderID', protoName: 'OrderID')
|
..aOS(2, _omitFieldNames ? '' : 'OrderID', protoName: 'OrderID')
|
||||||
..pc<QuantityByUnit>(3, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: QuantityByUnit.create)
|
..pc<QuantityByUnit>(3, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: QuantityByUnit.create)
|
||||||
|
..aOS(4, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -1914,6 +1917,15 @@ class Commission extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
$pb.PbList<QuantityByUnit> get quantities => $_getList(2);
|
$pb.PbList<QuantityByUnit> get quantities => $_getList(2);
|
||||||
|
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$core.String get actorID => $_getSZ(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
set actorID($core.String value) => $_setString(3, value);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$core.bool hasActorID() => $_has(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
void clearActorID() => $_clearField(4);
|
||||||
}
|
}
|
||||||
|
|
||||||
class Booking extends $pb.GeneratedMessage {
|
class Booking extends $pb.GeneratedMessage {
|
||||||
|
|||||||
@@ -559,6 +559,7 @@ const Commission$json = {
|
|||||||
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
|
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
|
||||||
{'1': 'OrderID', '3': 2, '4': 1, '5': 9, '10': 'OrderID'},
|
{'1': 'OrderID', '3': 2, '4': 1, '5': 9, '10': 'OrderID'},
|
||||||
{'1': 'Quantities', '3': 3, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '8': {}, '10': 'Quantities'},
|
{'1': 'Quantities', '3': 3, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '8': {}, '10': 'Quantities'},
|
||||||
|
{'1': 'ActorID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ActorID'},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -566,7 +567,8 @@ const Commission$json = {
|
|||||||
final $typed_data.Uint8List commissionDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List commissionDescriptor = $convert.base64Decode(
|
||||||
'CgpDb21taXNzaW9uEiUKCVByb2plY3RJRBgBIAEoCUIH+kIEcgIQAVIJUHJvamVjdElEEhgKB0'
|
'CgpDb21taXNzaW9uEiUKCVByb2plY3RJRBgBIAEoCUIH+kIEcgIQAVIJUHJvamVjdElEEhgKB0'
|
||||||
'9yZGVySUQYAiABKAlSB09yZGVySUQSPQoKUXVhbnRpdGllcxgDIAMoCzITLmFwaS5RdWFudGl0'
|
'9yZGVySUQYAiABKAlSB09yZGVySUQSPQoKUXVhbnRpdGllcxgDIAMoCzITLmFwaS5RdWFudGl0'
|
||||||
'eUJ5VW5pdEII+kIFkgECCAFSClF1YW50aXRpZXM=');
|
'eUJ5VW5pdEII+kIFkgECCAFSClF1YW50aXRpZXMSIQoHQWN0b3JJRBgEIAEoCUIH+kIEcgIQAV'
|
||||||
|
'IHQWN0b3JJRA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use bookingDescriptor instead')
|
@$core.Deprecated('Use bookingDescriptor instead')
|
||||||
const Booking$json = {
|
const Booking$json = {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
name: dart_core_sdk
|
name: dart_core_sdk
|
||||||
description: dart libs from core model proto files
|
description: dart libs from core model proto files
|
||||||
version: 1.12.0-SNAPSHOT-251009084729
|
version: 1.12.0-SNAPSHOT-251009115103
|
||||||
homepage: ''
|
homepage: ''
|
||||||
publish_to: ''
|
publish_to: ''
|
||||||
repository: ''
|
repository: ''
|
||||||
|
|||||||
Reference in New Issue
Block a user