You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -131,6 +131,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
$core.Iterable<$0.MetadataElement>? segmentationKeys,
|
||||
$0.DateTime? creationDateTime,
|
||||
$core.bool? wMSCreated,
|
||||
AppointmentExternalAccess? externalAccess,
|
||||
}) {
|
||||
final result = create();
|
||||
if (appointmentType != null) result.appointmentType = appointmentType;
|
||||
@@ -158,6 +159,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
if (segmentationKeys != null) result.segmentationKeys.addAll(segmentationKeys);
|
||||
if (creationDateTime != null) result.creationDateTime = creationDateTime;
|
||||
if (wMSCreated != null) result.wMSCreated = wMSCreated;
|
||||
if (externalAccess != null) result.externalAccess = externalAccess;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -192,6 +194,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
..pc<$0.MetadataElement>(29, _omitFieldNames ? '' : 'SegmentationKeys', $pb.PbFieldType.PM, protoName: 'SegmentationKeys', subBuilder: $0.MetadataElement.create)
|
||||
..aOM<$0.DateTime>(30, _omitFieldNames ? '' : 'CreationDateTime', protoName: 'CreationDateTime', subBuilder: $0.DateTime.create)
|
||||
..aOB(31, _omitFieldNames ? '' : 'WMSCreated', protoName: 'WMSCreated')
|
||||
..aOM<AppointmentExternalAccess>(32, _omitFieldNames ? '' : 'ExternalAccess', protoName: 'ExternalAccess', subBuilder: AppointmentExternalAccess.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -423,6 +426,17 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
$core.bool hasWMSCreated() => $_has(24);
|
||||
@$pb.TagNumber(31)
|
||||
void clearWMSCreated() => $_clearField(31);
|
||||
|
||||
@$pb.TagNumber(32)
|
||||
AppointmentExternalAccess get externalAccess => $_getN(25);
|
||||
@$pb.TagNumber(32)
|
||||
set externalAccess(AppointmentExternalAccess value) => $_setField(32, value);
|
||||
@$pb.TagNumber(32)
|
||||
$core.bool hasExternalAccess() => $_has(25);
|
||||
@$pb.TagNumber(32)
|
||||
void clearExternalAccess() => $_clearField(32);
|
||||
@$pb.TagNumber(32)
|
||||
AppointmentExternalAccess ensureExternalAccess() => $_ensure(25);
|
||||
}
|
||||
|
||||
class AppointmentTriplet extends $pb.GeneratedMessage {
|
||||
@@ -501,6 +515,64 @@ class AppointmentTriplet extends $pb.GeneratedMessage {
|
||||
Appointment ensureLastEvent() => $_ensure(2);
|
||||
}
|
||||
|
||||
class AppointmentExternalAccess extends $pb.GeneratedMessage {
|
||||
factory AppointmentExternalAccess({
|
||||
$core.String? hash,
|
||||
$core.String? uRL,
|
||||
}) {
|
||||
final result = create();
|
||||
if (hash != null) result.hash = hash;
|
||||
if (uRL != null) result.uRL = uRL;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentExternalAccess._();
|
||||
|
||||
factory AppointmentExternalAccess.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentExternalAccess.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
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')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentExternalAccess clone() => AppointmentExternalAccess()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentExternalAccess copyWith(void Function(AppointmentExternalAccess) updates) => super.copyWith((message) => updates(message as AppointmentExternalAccess)) as AppointmentExternalAccess;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentExternalAccess create() => AppointmentExternalAccess._();
|
||||
@$core.override
|
||||
AppointmentExternalAccess createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentExternalAccess> createRepeated() => $pb.PbList<AppointmentExternalAccess>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentExternalAccess getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentExternalAccess>(create);
|
||||
static AppointmentExternalAccess? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get hash => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set hash($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHash() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHash() => $_clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get uRL => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set uRL($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasURL() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearURL() => $_clearField(2);
|
||||
}
|
||||
|
||||
|
||||
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
|
||||
@@ -105,6 +105,7 @@ const AppointmentPayload$json = {
|
||||
{'1': 'Attendees', '3': 27, '4': 3, '5': 9, '8': {}, '10': 'Attendees'},
|
||||
{'1': 'RemovedAttendees', '3': 28, '4': 3, '5': 9, '8': {}, '10': 'RemovedAttendees'},
|
||||
{'1': 'WMSCreated', '3': 31, '4': 1, '5': 8, '10': 'WMSCreated'},
|
||||
{'1': 'ExternalAccess', '3': 32, '4': 1, '5': 11, '6': '.api.AppointmentExternalAccess', '10': 'ExternalAccess'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -159,7 +160,9 @@ final $typed_data.Uint8List appointmentPayloadDescriptor = $convert.base64Decode
|
||||
'WSAQIIAfLBGA5BdHRlbmRlZXNBZGRlZNrCGAsKCQoBKhIEdXNlclIJQXR0ZW5kZWVzElQKEFJl'
|
||||
'bW92ZWRBdHRlbmRlZXMYHCADKAlCKJJBAkAB8sEYEEF0dGVuZGVlc1JlbW92ZWTawhgLCgkKAS'
|
||||
'oSBHVzZXJSEFJlbW92ZWRBdHRlbmRlZXMSHgoKV01TQ3JlYXRlZBgfIAEoCFIKV01TQ3JlYXRl'
|
||||
'ZDonkkEkCiLSAQ9BcHBvaW50bWVudFR5cGXSAQ1TZWdtZW50YXRpb25z');
|
||||
'ZBJGCg5FeHRlcm5hbEFjY2VzcxggIAEoCzIeLmFwaS5BcHBvaW50bWVudEV4dGVybmFsQWNjZX'
|
||||
'NzUg5FeHRlcm5hbEFjY2VzczonkkEkCiLSAQ9BcHBvaW50bWVudFR5cGXSAQ1TZWdtZW50YXRp'
|
||||
'b25z');
|
||||
|
||||
@$core.Deprecated('Use appointmentTripletDescriptor instead')
|
||||
const AppointmentTriplet$json = {
|
||||
@@ -177,3 +180,17 @@ final $typed_data.Uint8List appointmentTripletDescriptor = $convert.base64Decode
|
||||
'IHQ3VycmVudBIsCghQcmV2aW91cxgCIAEoCzIQLmFwaS5BcHBvaW50bWVudFIIUHJldmlvdXMS'
|
||||
'LgoJTGFzdEV2ZW50GAMgASgLMhAuYXBpLkFwcG9pbnRtZW50UglMYXN0RXZlbnQ=');
|
||||
|
||||
@$core.Deprecated('Use appointmentExternalAccessDescriptor instead')
|
||||
const AppointmentExternalAccess$json = {
|
||||
'1': 'AppointmentExternalAccess',
|
||||
'2': [
|
||||
{'1': 'Hash', '3': 1, '4': 1, '5': 9, '10': 'Hash'},
|
||||
{'1': 'URL', '3': 2, '4': 1, '5': 9, '10': 'URL'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `AppointmentExternalAccess`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List appointmentExternalAccessDescriptor = $convert.base64Decode(
|
||||
'ChlBcHBvaW50bWVudEV4dGVybmFsQWNjZXNzEhIKBEhhc2gYASABKAlSBEhhc2gSEAoDVVJMGA'
|
||||
'IgASgJUgNVUkw=');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user