You've already forked dart-core-sdk
Release 1.11.7
This commit is contained in:
@@ -16,7 +16,6 @@ import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'repositoryShared.pb.dart' as $2;
|
||||
import 'shared.pb.dart' as $1;
|
||||
import 'slotbooking.pb.dart' as $3;
|
||||
|
||||
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
||||
|
||||
@@ -330,7 +329,6 @@ class ActorCreatedEvent extends $pb.GeneratedMessage {
|
||||
}
|
||||
|
||||
/// API Request
|
||||
@$core.Deprecated('This message is deprecated')
|
||||
class ActorCreatedRequest extends $pb.GeneratedMessage {
|
||||
factory ActorCreatedRequest({
|
||||
$1.RequestProjectHeader? header,
|
||||
@@ -408,7 +406,6 @@ class ActorCreatedRequest extends $pb.GeneratedMessage {
|
||||
}
|
||||
|
||||
/// API Response
|
||||
@$core.Deprecated('This message is deprecated')
|
||||
class ActorCreatedResponse extends $pb.GeneratedMessage {
|
||||
factory ActorCreatedResponse({
|
||||
$1.ResponseHeader? header,
|
||||
@@ -2355,538 +2352,6 @@ class ActorMetaDataUpdatedResponse extends $pb.GeneratedMessage {
|
||||
$1.EntityID ensureID() => $_ensure(1);
|
||||
}
|
||||
|
||||
class ActorAppointmentConfigurationUpdatedPayload extends $pb.GeneratedMessage {
|
||||
factory ActorAppointmentConfigurationUpdatedPayload({
|
||||
$core.bool? isSlotBookingEnabled,
|
||||
$2.SiteAlias? siteAlias,
|
||||
$3.ActorAuthorisation? appointmentConstraints,
|
||||
}) {
|
||||
final result = create();
|
||||
if (isSlotBookingEnabled != null) result.isSlotBookingEnabled = isSlotBookingEnabled;
|
||||
if (siteAlias != null) result.siteAlias = siteAlias;
|
||||
if (appointmentConstraints != null) result.appointmentConstraints = appointmentConstraints;
|
||||
return result;
|
||||
}
|
||||
|
||||
ActorAppointmentConfigurationUpdatedPayload._();
|
||||
|
||||
factory ActorAppointmentConfigurationUpdatedPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ActorAppointmentConfigurationUpdatedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorAppointmentConfigurationUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOB(1, _omitFieldNames ? '' : 'IsSlotBookingEnabled', protoName: 'IsSlotBookingEnabled')
|
||||
..aOM<$2.SiteAlias>(2, _omitFieldNames ? '' : 'SiteAlias', protoName: 'SiteAlias', subBuilder: $2.SiteAlias.create)
|
||||
..aOM<$3.ActorAuthorisation>(3, _omitFieldNames ? '' : 'AppointmentConstraints', protoName: 'AppointmentConstraints', subBuilder: $3.ActorAuthorisation.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorAppointmentConfigurationUpdatedPayload clone() => ActorAppointmentConfigurationUpdatedPayload()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorAppointmentConfigurationUpdatedPayload copyWith(void Function(ActorAppointmentConfigurationUpdatedPayload) updates) => super.copyWith((message) => updates(message as ActorAppointmentConfigurationUpdatedPayload)) as ActorAppointmentConfigurationUpdatedPayload;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorAppointmentConfigurationUpdatedPayload create() => ActorAppointmentConfigurationUpdatedPayload._();
|
||||
@$core.override
|
||||
ActorAppointmentConfigurationUpdatedPayload createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorAppointmentConfigurationUpdatedPayload> createRepeated() => $pb.PbList<ActorAppointmentConfigurationUpdatedPayload>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorAppointmentConfigurationUpdatedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorAppointmentConfigurationUpdatedPayload>(create);
|
||||
static ActorAppointmentConfigurationUpdatedPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool get isSlotBookingEnabled => $_getBF(0);
|
||||
@$pb.TagNumber(1)
|
||||
set isSlotBookingEnabled($core.bool value) => $_setBool(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasIsSlotBookingEnabled() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearIsSlotBookingEnabled() => $_clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$2.SiteAlias get siteAlias => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set siteAlias($2.SiteAlias value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasSiteAlias() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearSiteAlias() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$2.SiteAlias ensureSiteAlias() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$3.ActorAuthorisation get appointmentConstraints => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set appointmentConstraints($3.ActorAuthorisation value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasAppointmentConstraints() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearAppointmentConstraints() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
$3.ActorAuthorisation ensureAppointmentConstraints() => $_ensure(2);
|
||||
}
|
||||
|
||||
class ActorAppointmentConfigurationUpdatedEvent extends $pb.GeneratedMessage {
|
||||
factory ActorAppointmentConfigurationUpdatedEvent({
|
||||
$1.EventHeader? header,
|
||||
$1.EntityID? iD,
|
||||
ActorAppointmentConfigurationUpdatedPayload? payload,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
if (payload != null) result.payload = payload;
|
||||
return result;
|
||||
}
|
||||
|
||||
ActorAppointmentConfigurationUpdatedEvent._();
|
||||
|
||||
factory ActorAppointmentConfigurationUpdatedEvent.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ActorAppointmentConfigurationUpdatedEvent.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorAppointmentConfigurationUpdatedEvent', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.EventHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.EventHeader.create)
|
||||
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||
..aOM<ActorAppointmentConfigurationUpdatedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorAppointmentConfigurationUpdatedPayload.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorAppointmentConfigurationUpdatedEvent clone() => ActorAppointmentConfigurationUpdatedEvent()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorAppointmentConfigurationUpdatedEvent copyWith(void Function(ActorAppointmentConfigurationUpdatedEvent) updates) => super.copyWith((message) => updates(message as ActorAppointmentConfigurationUpdatedEvent)) as ActorAppointmentConfigurationUpdatedEvent;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorAppointmentConfigurationUpdatedEvent create() => ActorAppointmentConfigurationUpdatedEvent._();
|
||||
@$core.override
|
||||
ActorAppointmentConfigurationUpdatedEvent createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorAppointmentConfigurationUpdatedEvent> createRepeated() => $pb.PbList<ActorAppointmentConfigurationUpdatedEvent>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorAppointmentConfigurationUpdatedEvent getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorAppointmentConfigurationUpdatedEvent>(create);
|
||||
static ActorAppointmentConfigurationUpdatedEvent? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.EventHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.EventHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.EventHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($1.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ActorAppointmentConfigurationUpdatedPayload get payload => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set payload(ActorAppointmentConfigurationUpdatedPayload value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasPayload() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearPayload() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ActorAppointmentConfigurationUpdatedPayload ensurePayload() => $_ensure(2);
|
||||
}
|
||||
|
||||
class ActorAppointmentConfigurationUpdatedRequest extends $pb.GeneratedMessage {
|
||||
factory ActorAppointmentConfigurationUpdatedRequest({
|
||||
$1.RequestProjectHeader? header,
|
||||
$1.EntityID? iD,
|
||||
ActorAppointmentConfigurationUpdatedPayload? payload,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
if (payload != null) result.payload = payload;
|
||||
return result;
|
||||
}
|
||||
|
||||
ActorAppointmentConfigurationUpdatedRequest._();
|
||||
|
||||
factory ActorAppointmentConfigurationUpdatedRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ActorAppointmentConfigurationUpdatedRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorAppointmentConfigurationUpdatedRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
|
||||
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||
..aOM<ActorAppointmentConfigurationUpdatedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorAppointmentConfigurationUpdatedPayload.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorAppointmentConfigurationUpdatedRequest clone() => ActorAppointmentConfigurationUpdatedRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorAppointmentConfigurationUpdatedRequest copyWith(void Function(ActorAppointmentConfigurationUpdatedRequest) updates) => super.copyWith((message) => updates(message as ActorAppointmentConfigurationUpdatedRequest)) as ActorAppointmentConfigurationUpdatedRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorAppointmentConfigurationUpdatedRequest create() => ActorAppointmentConfigurationUpdatedRequest._();
|
||||
@$core.override
|
||||
ActorAppointmentConfigurationUpdatedRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorAppointmentConfigurationUpdatedRequest> createRepeated() => $pb.PbList<ActorAppointmentConfigurationUpdatedRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorAppointmentConfigurationUpdatedRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorAppointmentConfigurationUpdatedRequest>(create);
|
||||
static ActorAppointmentConfigurationUpdatedRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($1.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ActorAppointmentConfigurationUpdatedPayload get payload => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set payload(ActorAppointmentConfigurationUpdatedPayload value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasPayload() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearPayload() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ActorAppointmentConfigurationUpdatedPayload ensurePayload() => $_ensure(2);
|
||||
}
|
||||
|
||||
class ActorAppointmentConfigurationUpdatedResponse extends $pb.GeneratedMessage {
|
||||
factory ActorAppointmentConfigurationUpdatedResponse({
|
||||
$1.ResponseHeader? header,
|
||||
$1.EntityID? iD,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
return result;
|
||||
}
|
||||
|
||||
ActorAppointmentConfigurationUpdatedResponse._();
|
||||
|
||||
factory ActorAppointmentConfigurationUpdatedResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ActorAppointmentConfigurationUpdatedResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorAppointmentConfigurationUpdatedResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.ResponseHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResponseHeader.create)
|
||||
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorAppointmentConfigurationUpdatedResponse clone() => ActorAppointmentConfigurationUpdatedResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorAppointmentConfigurationUpdatedResponse copyWith(void Function(ActorAppointmentConfigurationUpdatedResponse) updates) => super.copyWith((message) => updates(message as ActorAppointmentConfigurationUpdatedResponse)) as ActorAppointmentConfigurationUpdatedResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorAppointmentConfigurationUpdatedResponse create() => ActorAppointmentConfigurationUpdatedResponse._();
|
||||
@$core.override
|
||||
ActorAppointmentConfigurationUpdatedResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorAppointmentConfigurationUpdatedResponse> createRepeated() => $pb.PbList<ActorAppointmentConfigurationUpdatedResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorAppointmentConfigurationUpdatedResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorAppointmentConfigurationUpdatedResponse>(create);
|
||||
static ActorAppointmentConfigurationUpdatedResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.ResponseHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.ResponseHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.ResponseHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($1.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID ensureID() => $_ensure(1);
|
||||
}
|
||||
|
||||
class ActorSanitisedPayload extends $pb.GeneratedMessage {
|
||||
factory ActorSanitisedPayload() => create();
|
||||
|
||||
ActorSanitisedPayload._();
|
||||
|
||||
factory ActorSanitisedPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ActorSanitisedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorSanitisedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorSanitisedPayload clone() => ActorSanitisedPayload()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorSanitisedPayload copyWith(void Function(ActorSanitisedPayload) updates) => super.copyWith((message) => updates(message as ActorSanitisedPayload)) as ActorSanitisedPayload;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorSanitisedPayload create() => ActorSanitisedPayload._();
|
||||
@$core.override
|
||||
ActorSanitisedPayload createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorSanitisedPayload> createRepeated() => $pb.PbList<ActorSanitisedPayload>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorSanitisedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorSanitisedPayload>(create);
|
||||
static ActorSanitisedPayload? _defaultInstance;
|
||||
}
|
||||
|
||||
class ActorSanitisedEvent extends $pb.GeneratedMessage {
|
||||
factory ActorSanitisedEvent({
|
||||
$1.EventHeader? header,
|
||||
$1.EntityID? iD,
|
||||
ActorSanitisedPayload? payload,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
if (payload != null) result.payload = payload;
|
||||
return result;
|
||||
}
|
||||
|
||||
ActorSanitisedEvent._();
|
||||
|
||||
factory ActorSanitisedEvent.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ActorSanitisedEvent.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorSanitisedEvent', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.EventHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.EventHeader.create)
|
||||
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||
..aOM<ActorSanitisedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorSanitisedPayload.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorSanitisedEvent clone() => ActorSanitisedEvent()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorSanitisedEvent copyWith(void Function(ActorSanitisedEvent) updates) => super.copyWith((message) => updates(message as ActorSanitisedEvent)) as ActorSanitisedEvent;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorSanitisedEvent create() => ActorSanitisedEvent._();
|
||||
@$core.override
|
||||
ActorSanitisedEvent createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorSanitisedEvent> createRepeated() => $pb.PbList<ActorSanitisedEvent>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorSanitisedEvent getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorSanitisedEvent>(create);
|
||||
static ActorSanitisedEvent? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.EventHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.EventHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.EventHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($1.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ActorSanitisedPayload get payload => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set payload(ActorSanitisedPayload value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasPayload() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearPayload() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ActorSanitisedPayload ensurePayload() => $_ensure(2);
|
||||
}
|
||||
|
||||
class ActorSanitisedRequest extends $pb.GeneratedMessage {
|
||||
factory ActorSanitisedRequest({
|
||||
$1.RequestProjectHeader? header,
|
||||
$1.EntityID? iD,
|
||||
ActorSanitisedPayload? payload,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
if (payload != null) result.payload = payload;
|
||||
return result;
|
||||
}
|
||||
|
||||
ActorSanitisedRequest._();
|
||||
|
||||
factory ActorSanitisedRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ActorSanitisedRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorSanitisedRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
|
||||
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||
..aOM<ActorSanitisedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorSanitisedPayload.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorSanitisedRequest clone() => ActorSanitisedRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorSanitisedRequest copyWith(void Function(ActorSanitisedRequest) updates) => super.copyWith((message) => updates(message as ActorSanitisedRequest)) as ActorSanitisedRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorSanitisedRequest create() => ActorSanitisedRequest._();
|
||||
@$core.override
|
||||
ActorSanitisedRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorSanitisedRequest> createRepeated() => $pb.PbList<ActorSanitisedRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorSanitisedRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorSanitisedRequest>(create);
|
||||
static ActorSanitisedRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($1.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ActorSanitisedPayload get payload => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set payload(ActorSanitisedPayload value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasPayload() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearPayload() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ActorSanitisedPayload ensurePayload() => $_ensure(2);
|
||||
}
|
||||
|
||||
class ActorSanitisedResponse extends $pb.GeneratedMessage {
|
||||
factory ActorSanitisedResponse({
|
||||
$1.ResponseHeader? header,
|
||||
$1.EntityID? iD,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
return result;
|
||||
}
|
||||
|
||||
ActorSanitisedResponse._();
|
||||
|
||||
factory ActorSanitisedResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ActorSanitisedResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorSanitisedResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.ResponseHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResponseHeader.create)
|
||||
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorSanitisedResponse clone() => ActorSanitisedResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorSanitisedResponse copyWith(void Function(ActorSanitisedResponse) updates) => super.copyWith((message) => updates(message as ActorSanitisedResponse)) as ActorSanitisedResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorSanitisedResponse create() => ActorSanitisedResponse._();
|
||||
@$core.override
|
||||
ActorSanitisedResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorSanitisedResponse> createRepeated() => $pb.PbList<ActorSanitisedResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorSanitisedResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorSanitisedResponse>(create);
|
||||
static ActorSanitisedResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.ResponseHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.ResponseHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.ResponseHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($1.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID ensureID() => $_ensure(1);
|
||||
}
|
||||
|
||||
|
||||
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
|
||||
Reference in New Issue
Block a user