Latest generation

This commit is contained in:
ci core model
2025-12-17 08:45:50 +00:00
parent ae5dbe7a55
commit a8c8b32efe
4 changed files with 12 additions and 12 deletions

View File

@@ -183,13 +183,13 @@ class ActorSetSiteAliasPayload extends $pb.GeneratedMessage {
$0.SiteAlias? siteAlias,
$core.bool? isSlotBookingEnabled,
$2.ActorAuthorisation? appointmentConstraints,
$core.String? actorName,
$core.String? name,
}) {
final result = create();
if (siteAlias != null) result.siteAlias = siteAlias;
if (isSlotBookingEnabled != null) result.isSlotBookingEnabled = isSlotBookingEnabled;
if (appointmentConstraints != null) result.appointmentConstraints = appointmentConstraints;
if (actorName != null) result.actorName = actorName;
if (name != null) result.name = name;
return result;
}
@@ -202,7 +202,7 @@ class ActorSetSiteAliasPayload extends $pb.GeneratedMessage {
..aOM<$0.SiteAlias>(1, _omitFieldNames ? '' : 'SiteAlias', protoName: 'SiteAlias', subBuilder: $0.SiteAlias.create)
..aOB(2, _omitFieldNames ? '' : 'IsSlotBookingEnabled', protoName: 'IsSlotBookingEnabled')
..aOM<$2.ActorAuthorisation>(3, _omitFieldNames ? '' : 'AppointmentConstraints', protoName: 'AppointmentConstraints', subBuilder: $2.ActorAuthorisation.create)
..aOS(4, _omitFieldNames ? '' : 'ActorName', protoName: 'ActorName')
..aOS(4, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..hasRequiredFields = false
;
@@ -255,13 +255,13 @@ class ActorSetSiteAliasPayload extends $pb.GeneratedMessage {
$2.ActorAuthorisation ensureAppointmentConstraints() => $_ensure(2);
@$pb.TagNumber(4)
$core.String get actorName => $_getSZ(3);
$core.String get name => $_getSZ(3);
@$pb.TagNumber(4)
set actorName($core.String value) => $_setString(3, value);
set name($core.String value) => $_setString(3, value);
@$pb.TagNumber(4)
$core.bool hasActorName() => $_has(3);
$core.bool hasName() => $_has(3);
@$pb.TagNumber(4)
void clearActorName() => $_clearField(4);
void clearName() => $_clearField(4);
}
class ActorSetSiteAlias extends $pb.GeneratedMessage {