You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -371,7 +371,15 @@ class ActorSetSiteAlias extends $pb.GeneratedMessage {
|
||||
///
|
||||
/// ClearSiteAlias : clear entry in the SiteActor DB
|
||||
class ActorClearSiteAliasPayload extends $pb.GeneratedMessage {
|
||||
factory ActorClearSiteAliasPayload() => create();
|
||||
factory ActorClearSiteAliasPayload({
|
||||
$0.SiteAlias? siteAlias,
|
||||
$core.bool? isSlotBookingEnabled,
|
||||
}) {
|
||||
final result = create();
|
||||
if (siteAlias != null) result.siteAlias = siteAlias;
|
||||
if (isSlotBookingEnabled != null) result.isSlotBookingEnabled = isSlotBookingEnabled;
|
||||
return result;
|
||||
}
|
||||
|
||||
ActorClearSiteAliasPayload._();
|
||||
|
||||
@@ -379,6 +387,8 @@ class ActorClearSiteAliasPayload extends $pb.GeneratedMessage {
|
||||
factory ActorClearSiteAliasPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorClearSiteAliasPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$0.SiteAlias>(1, _omitFieldNames ? '' : 'SiteAlias', protoName: 'SiteAlias', subBuilder: $0.SiteAlias.create)
|
||||
..aOB(2, _omitFieldNames ? '' : 'IsSlotBookingEnabled', protoName: 'IsSlotBookingEnabled')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -398,6 +408,26 @@ class ActorClearSiteAliasPayload extends $pb.GeneratedMessage {
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorClearSiteAliasPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorClearSiteAliasPayload>(create);
|
||||
static ActorClearSiteAliasPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$0.SiteAlias get siteAlias => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set siteAlias($0.SiteAlias value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasSiteAlias() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearSiteAlias() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$0.SiteAlias ensureSiteAlias() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool get isSlotBookingEnabled => $_getBF(1);
|
||||
@$pb.TagNumber(2)
|
||||
set isSlotBookingEnabled($core.bool value) => $_setBool(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasIsSlotBookingEnabled() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearIsSlotBookingEnabled() => $_clearField(2);
|
||||
}
|
||||
|
||||
class ClearSiteAlias extends $pb.GeneratedMessage {
|
||||
|
||||
Reference in New Issue
Block a user