Latest generation

This commit is contained in:
ci core model
2026-06-01 14:06:46 +00:00
parent c5611b1a3f
commit cce468f073
4 changed files with 17 additions and 3 deletions

View File

@@ -12,6 +12,7 @@
import 'dart:core' as $core;
import 'package:fixnum/fixnum.dart' as $fixnum;
import 'package:protobuf/protobuf.dart' as $pb;
import 'repositoryShared.pb.dart' as $2;
@@ -519,10 +520,12 @@ class AppointmentExternalAccess extends $pb.GeneratedMessage {
factory AppointmentExternalAccess({
$core.String? hash,
$core.String? uRL,
$fixnum.Int64? expirationTime,
}) {
final result = create();
if (hash != null) result.hash = hash;
if (uRL != null) result.uRL = uRL;
if (expirationTime != null) result.expirationTime = expirationTime;
return result;
}
@@ -534,6 +537,7 @@ class AppointmentExternalAccess extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentExternalAccess', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'Hash', protoName: 'Hash')
..aOS(2, _omitFieldNames ? '' : 'URL', protoName: 'URL')
..aInt64(3, _omitFieldNames ? '' : 'ExpirationTime', protoName: 'ExpirationTime')
..hasRequiredFields = false
;
@@ -571,6 +575,15 @@ class AppointmentExternalAccess extends $pb.GeneratedMessage {
$core.bool hasURL() => $_has(1);
@$pb.TagNumber(2)
void clearURL() => $_clearField(2);
@$pb.TagNumber(3)
$fixnum.Int64 get expirationTime => $_getI64(2);
@$pb.TagNumber(3)
set expirationTime($fixnum.Int64 value) => $_setInt64(2, value);
@$pb.TagNumber(3)
$core.bool hasExpirationTime() => $_has(2);
@$pb.TagNumber(3)
void clearExpirationTime() => $_clearField(3);
}

View File

@@ -186,11 +186,12 @@ const AppointmentExternalAccess$json = {
'2': [
{'1': 'Hash', '3': 1, '4': 1, '5': 9, '10': 'Hash'},
{'1': 'URL', '3': 2, '4': 1, '5': 9, '10': 'URL'},
{'1': 'ExpirationTime', '3': 3, '4': 1, '5': 3, '10': 'ExpirationTime'},
],
};
/// Descriptor for `AppointmentExternalAccess`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentExternalAccessDescriptor = $convert.base64Decode(
'ChlBcHBvaW50bWVudEV4dGVybmFsQWNjZXNzEhIKBEhhc2gYASABKAlSBEhhc2gSEAoDVVJMGA'
'IgASgJUgNVUkw=');
'IgASgJUgNVUkwSJgoORXhwaXJhdGlvblRpbWUYAyABKANSDkV4cGlyYXRpb25UaW1l');