Latest generation

This commit is contained in:
ci core model
2025-11-18 10:01:42 +00:00
parent f653d5ac74
commit 3b56b52411
4 changed files with 23 additions and 3 deletions

View File

@@ -117,6 +117,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
$core.String? reason,
$core.bool? instructionAck,
$core.Iterable<$0.MetadataElement>? carrierInformation,
$core.String? actorID,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -136,6 +137,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
if (reason != null) result.reason = reason;
if (instructionAck != null) result.instructionAck = instructionAck;
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
if (actorID != null) result.actorID = actorID;
return result;
}
@@ -162,6 +164,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
..aOS(17, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..aOB(18, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
..pc<$0.MetadataElement>(19, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $0.MetadataElement.create)
..aOS(20, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -310,6 +313,16 @@ class AppointmentPayload extends $pb.GeneratedMessage {
/// Carrier information metadata
@$pb.TagNumber(19)
$pb.PbList<$0.MetadataElement> get carrierInformation => $_getList(16);
/// Empty attribute, just used for inpout api payloads to resolve the site resource from project context with actor alias
@$pb.TagNumber(20)
$core.String get actorID => $_getSZ(17);
@$pb.TagNumber(20)
set actorID($core.String value) => $_setString(17, value);
@$pb.TagNumber(20)
$core.bool hasActorID() => $_has(17);
@$pb.TagNumber(20)
void clearActorID() => $_clearField(20);
}
class AppointmentTriplet extends $pb.GeneratedMessage {