You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1997,12 +1997,16 @@ class SiteActor extends $pb.GeneratedMessage {
|
||||
$core.String? actorID,
|
||||
$core.String? siteID,
|
||||
$2.AppointmentType? type,
|
||||
$2.CommandIdentifierEntry? loadingCommandIdentifierEntry,
|
||||
$2.CommandIdentifierEntry? unLoadingCommandIdentifierEntry,
|
||||
}) {
|
||||
final result = create();
|
||||
if (projectID != null) result.projectID = projectID;
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
if (siteID != null) result.siteID = siteID;
|
||||
if (type != null) result.type = type;
|
||||
if (loadingCommandIdentifierEntry != null) result.loadingCommandIdentifierEntry = loadingCommandIdentifierEntry;
|
||||
if (unLoadingCommandIdentifierEntry != null) result.unLoadingCommandIdentifierEntry = unLoadingCommandIdentifierEntry;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -2016,6 +2020,8 @@ class SiteActor extends $pb.GeneratedMessage {
|
||||
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..aOS(3, _omitFieldNames ? '' : 'SiteID', protoName: 'SiteID')
|
||||
..e<$2.AppointmentType>(4, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: $2.AppointmentType.APPOINTMENT_TYPE_UNKNOWN, valueOf: $2.AppointmentType.valueOf, enumValues: $2.AppointmentType.values)
|
||||
..e<$2.CommandIdentifierEntry>(5, _omitFieldNames ? '' : 'LoadingCommandIdentifierEntry', $pb.PbFieldType.OE, protoName: 'LoadingCommandIdentifierEntry', defaultOrMaker: $2.CommandIdentifierEntry.CommandIdentifierEntry_MandatoryExceptForAllowedUsers, valueOf: $2.CommandIdentifierEntry.valueOf, enumValues: $2.CommandIdentifierEntry.values)
|
||||
..e<$2.CommandIdentifierEntry>(6, _omitFieldNames ? '' : 'UnLoadingCommandIdentifierEntry', $pb.PbFieldType.OE, protoName: 'UnLoadingCommandIdentifierEntry', defaultOrMaker: $2.CommandIdentifierEntry.CommandIdentifierEntry_MandatoryExceptForAllowedUsers, valueOf: $2.CommandIdentifierEntry.valueOf, enumValues: $2.CommandIdentifierEntry.values)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -2071,6 +2077,26 @@ class SiteActor extends $pb.GeneratedMessage {
|
||||
$core.bool hasType() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearType() => $_clearField(4);
|
||||
|
||||
/// CommandIdentifierEntry
|
||||
@$pb.TagNumber(5)
|
||||
$2.CommandIdentifierEntry get loadingCommandIdentifierEntry => $_getN(4);
|
||||
@$pb.TagNumber(5)
|
||||
set loadingCommandIdentifierEntry($2.CommandIdentifierEntry value) => $_setField(5, value);
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasLoadingCommandIdentifierEntry() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearLoadingCommandIdentifierEntry() => $_clearField(5);
|
||||
|
||||
/// CommandIdentifierEntry
|
||||
@$pb.TagNumber(6)
|
||||
$2.CommandIdentifierEntry get unLoadingCommandIdentifierEntry => $_getN(5);
|
||||
@$pb.TagNumber(6)
|
||||
set unLoadingCommandIdentifierEntry($2.CommandIdentifierEntry value) => $_setField(6, value);
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasUnLoadingCommandIdentifierEntry() => $_has(5);
|
||||
@$pb.TagNumber(6)
|
||||
void clearUnLoadingCommandIdentifierEntry() => $_clearField(6);
|
||||
}
|
||||
|
||||
class GetBookingContextRequest extends $pb.GeneratedMessage {
|
||||
@@ -4459,11 +4485,11 @@ class SiteProjectBookingContext extends $pb.GeneratedMessage {
|
||||
class SiteProjectAptTypeBookingContext extends $pb.GeneratedMessage {
|
||||
factory SiteProjectAptTypeBookingContext({
|
||||
$2.AppointmentType? appointmentType,
|
||||
$core.Iterable<$core.String>? actorIDs,
|
||||
$core.Iterable<SiteProjectAptTypeBookingActorsContext>? actors,
|
||||
}) {
|
||||
final result = create();
|
||||
if (appointmentType != null) result.appointmentType = appointmentType;
|
||||
if (actorIDs != null) result.actorIDs.addAll(actorIDs);
|
||||
if (actors != null) result.actors.addAll(actors);
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -4474,7 +4500,7 @@ class SiteProjectAptTypeBookingContext extends $pb.GeneratedMessage {
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SiteProjectAptTypeBookingContext', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..e<$2.AppointmentType>(1, _omitFieldNames ? '' : 'AppointmentType', $pb.PbFieldType.OE, protoName: 'AppointmentType', defaultOrMaker: $2.AppointmentType.APPOINTMENT_TYPE_UNKNOWN, valueOf: $2.AppointmentType.valueOf, enumValues: $2.AppointmentType.values)
|
||||
..pPS(2, _omitFieldNames ? '' : 'ActorIDs', protoName: 'ActorIDs')
|
||||
..pc<SiteProjectAptTypeBookingActorsContext>(2, _omitFieldNames ? '' : 'Actors', $pb.PbFieldType.PM, protoName: 'Actors', subBuilder: SiteProjectAptTypeBookingActorsContext.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -4505,7 +4531,65 @@ class SiteProjectAptTypeBookingContext extends $pb.GeneratedMessage {
|
||||
void clearAppointmentType() => $_clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$core.String> get actorIDs => $_getList(1);
|
||||
$pb.PbList<SiteProjectAptTypeBookingActorsContext> get actors => $_getList(1);
|
||||
}
|
||||
|
||||
class SiteProjectAptTypeBookingActorsContext extends $pb.GeneratedMessage {
|
||||
factory SiteProjectAptTypeBookingActorsContext({
|
||||
$2.CommandIdentifierEntry? commandIdentifierEntry,
|
||||
$core.String? actorIDs,
|
||||
}) {
|
||||
final result = create();
|
||||
if (commandIdentifierEntry != null) result.commandIdentifierEntry = commandIdentifierEntry;
|
||||
if (actorIDs != null) result.actorIDs = actorIDs;
|
||||
return result;
|
||||
}
|
||||
|
||||
SiteProjectAptTypeBookingActorsContext._();
|
||||
|
||||
factory SiteProjectAptTypeBookingActorsContext.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory SiteProjectAptTypeBookingActorsContext.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SiteProjectAptTypeBookingActorsContext', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..e<$2.CommandIdentifierEntry>(1, _omitFieldNames ? '' : 'CommandIdentifierEntry', $pb.PbFieldType.OE, protoName: 'CommandIdentifierEntry', defaultOrMaker: $2.CommandIdentifierEntry.CommandIdentifierEntry_MandatoryExceptForAllowedUsers, valueOf: $2.CommandIdentifierEntry.valueOf, enumValues: $2.CommandIdentifierEntry.values)
|
||||
..aOS(2, _omitFieldNames ? '' : 'ActorIDs', protoName: 'ActorIDs')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
SiteProjectAptTypeBookingActorsContext clone() => SiteProjectAptTypeBookingActorsContext()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
SiteProjectAptTypeBookingActorsContext copyWith(void Function(SiteProjectAptTypeBookingActorsContext) updates) => super.copyWith((message) => updates(message as SiteProjectAptTypeBookingActorsContext)) as SiteProjectAptTypeBookingActorsContext;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static SiteProjectAptTypeBookingActorsContext create() => SiteProjectAptTypeBookingActorsContext._();
|
||||
@$core.override
|
||||
SiteProjectAptTypeBookingActorsContext createEmptyInstance() => create();
|
||||
static $pb.PbList<SiteProjectAptTypeBookingActorsContext> createRepeated() => $pb.PbList<SiteProjectAptTypeBookingActorsContext>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static SiteProjectAptTypeBookingActorsContext getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SiteProjectAptTypeBookingActorsContext>(create);
|
||||
static SiteProjectAptTypeBookingActorsContext? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$2.CommandIdentifierEntry get commandIdentifierEntry => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set commandIdentifierEntry($2.CommandIdentifierEntry value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCommandIdentifierEntry() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCommandIdentifierEntry() => $_clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get actorIDs => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set actorIDs($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasActorIDs() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearActorIDs() => $_clearField(2);
|
||||
}
|
||||
|
||||
class InitBookerProfileRequest extends $pb.GeneratedMessage {
|
||||
|
||||
Reference in New Issue
Block a user