You've already forked dart-core-sdk
544 lines
21 KiB
Dart
544 lines
21 KiB
Dart
//
|
|
// Generated code. Do not modify.
|
|
// source: notifAction.proto
|
|
//
|
|
// @dart = 3.3
|
|
|
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
|
|
|
import 'dart:core' as $core;
|
|
|
|
import 'package:protobuf/protobuf.dart' as $pb;
|
|
|
|
import 'collabShared.pbenum.dart' as $70;
|
|
import 'shared.pb.dart' as $3;
|
|
|
|
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|
|
|
///
|
|
/// NotifyByMail
|
|
class NotifNotifyByMailPayload extends $pb.GeneratedMessage {
|
|
factory NotifNotifyByMailPayload({
|
|
$70.NotifTypeEnum? notificationType,
|
|
$core.String? issuerID,
|
|
$core.Iterable<$core.String>? contacts,
|
|
$core.String? details,
|
|
$core.String? entityDomain,
|
|
$core.String? entityType,
|
|
$core.String? entityRefID,
|
|
$core.String? tags,
|
|
}) {
|
|
final $result = create();
|
|
if (notificationType != null) {
|
|
$result.notificationType = notificationType;
|
|
}
|
|
if (issuerID != null) {
|
|
$result.issuerID = issuerID;
|
|
}
|
|
if (contacts != null) {
|
|
$result.contacts.addAll(contacts);
|
|
}
|
|
if (details != null) {
|
|
$result.details = details;
|
|
}
|
|
if (entityDomain != null) {
|
|
$result.entityDomain = entityDomain;
|
|
}
|
|
if (entityType != null) {
|
|
$result.entityType = entityType;
|
|
}
|
|
if (entityRefID != null) {
|
|
$result.entityRefID = entityRefID;
|
|
}
|
|
if (tags != null) {
|
|
$result.tags = tags;
|
|
}
|
|
return $result;
|
|
}
|
|
NotifNotifyByMailPayload._() : super();
|
|
factory NotifNotifyByMailPayload.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
factory NotifNotifyByMailPayload.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'NotifNotifyByMailPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..e<$70.NotifTypeEnum>(1, _omitFieldNames ? '' : 'NotificationType', $pb.PbFieldType.OE, protoName: 'NotificationType', defaultOrMaker: $70.NotifTypeEnum.NOTIF_TYPE_UNKNOWN, valueOf: $70.NotifTypeEnum.valueOf, enumValues: $70.NotifTypeEnum.values)
|
|
..aOS(2, _omitFieldNames ? '' : 'IssuerID', protoName: 'IssuerID')
|
|
..pPS(3, _omitFieldNames ? '' : 'Contacts', protoName: 'Contacts')
|
|
..aOS(4, _omitFieldNames ? '' : 'Details', protoName: 'Details')
|
|
..aOS(5, _omitFieldNames ? '' : 'EntityDomain', protoName: 'EntityDomain')
|
|
..aOS(6, _omitFieldNames ? '' : 'EntityType', protoName: 'EntityType')
|
|
..aOS(7, _omitFieldNames ? '' : 'EntityRefID', protoName: 'EntityRefID')
|
|
..aOS(8, _omitFieldNames ? '' : 'Tags', protoName: 'Tags')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
'Will be removed in next major version')
|
|
NotifNotifyByMailPayload clone() => NotifNotifyByMailPayload()..mergeFromMessage(this);
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
'Will be removed in next major version')
|
|
NotifNotifyByMailPayload copyWith(void Function(NotifNotifyByMailPayload) updates) => super.copyWith((message) => updates(message as NotifNotifyByMailPayload)) as NotifNotifyByMailPayload;
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static NotifNotifyByMailPayload create() => NotifNotifyByMailPayload._();
|
|
NotifNotifyByMailPayload createEmptyInstance() => create();
|
|
static $pb.PbList<NotifNotifyByMailPayload> createRepeated() => $pb.PbList<NotifNotifyByMailPayload>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static NotifNotifyByMailPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<NotifNotifyByMailPayload>(create);
|
|
static NotifNotifyByMailPayload? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$70.NotifTypeEnum get notificationType => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set notificationType($70.NotifTypeEnum v) { $_setField(1, v); }
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasNotificationType() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearNotificationType() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get issuerID => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set issuerID($core.String v) { $_setString(1, v); }
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasIssuerID() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearIssuerID() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$pb.PbList<$core.String> get contacts => $_getList(2);
|
|
|
|
@$pb.TagNumber(4)
|
|
$core.String get details => $_getSZ(3);
|
|
@$pb.TagNumber(4)
|
|
set details($core.String v) { $_setString(3, v); }
|
|
@$pb.TagNumber(4)
|
|
$core.bool hasDetails() => $_has(3);
|
|
@$pb.TagNumber(4)
|
|
void clearDetails() => $_clearField(4);
|
|
|
|
@$pb.TagNumber(5)
|
|
$core.String get entityDomain => $_getSZ(4);
|
|
@$pb.TagNumber(5)
|
|
set entityDomain($core.String v) { $_setString(4, v); }
|
|
@$pb.TagNumber(5)
|
|
$core.bool hasEntityDomain() => $_has(4);
|
|
@$pb.TagNumber(5)
|
|
void clearEntityDomain() => $_clearField(5);
|
|
|
|
@$pb.TagNumber(6)
|
|
$core.String get entityType => $_getSZ(5);
|
|
@$pb.TagNumber(6)
|
|
set entityType($core.String v) { $_setString(5, v); }
|
|
@$pb.TagNumber(6)
|
|
$core.bool hasEntityType() => $_has(5);
|
|
@$pb.TagNumber(6)
|
|
void clearEntityType() => $_clearField(6);
|
|
|
|
@$pb.TagNumber(7)
|
|
$core.String get entityRefID => $_getSZ(6);
|
|
@$pb.TagNumber(7)
|
|
set entityRefID($core.String v) { $_setString(6, v); }
|
|
@$pb.TagNumber(7)
|
|
$core.bool hasEntityRefID() => $_has(6);
|
|
@$pb.TagNumber(7)
|
|
void clearEntityRefID() => $_clearField(7);
|
|
|
|
@$pb.TagNumber(8)
|
|
$core.String get tags => $_getSZ(7);
|
|
@$pb.TagNumber(8)
|
|
set tags($core.String v) { $_setString(7, v); }
|
|
@$pb.TagNumber(8)
|
|
$core.bool hasTags() => $_has(7);
|
|
@$pb.TagNumber(8)
|
|
void clearTags() => $_clearField(8);
|
|
}
|
|
|
|
class NotifNotifyByMail extends $pb.GeneratedMessage {
|
|
factory NotifNotifyByMail({
|
|
$3.CommandHeader? header,
|
|
$3.EntityID? iD,
|
|
NotifNotifyByMailPayload? payload,
|
|
NotifNotifyByMailPayload? eventPayload,
|
|
NotifNotifyByMailPayload? previousPayload,
|
|
}) {
|
|
final $result = create();
|
|
if (header != null) {
|
|
$result.header = header;
|
|
}
|
|
if (iD != null) {
|
|
$result.iD = iD;
|
|
}
|
|
if (payload != null) {
|
|
$result.payload = payload;
|
|
}
|
|
if (eventPayload != null) {
|
|
$result.eventPayload = eventPayload;
|
|
}
|
|
if (previousPayload != null) {
|
|
$result.previousPayload = previousPayload;
|
|
}
|
|
return $result;
|
|
}
|
|
NotifNotifyByMail._() : super();
|
|
factory NotifNotifyByMail.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
factory NotifNotifyByMail.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'NotifNotifyByMail', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$3.CommandHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.CommandHeader.create)
|
|
..aOM<$3.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $3.EntityID.create)
|
|
..aOM<NotifNotifyByMailPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: NotifNotifyByMailPayload.create)
|
|
..aOM<NotifNotifyByMailPayload>(4, _omitFieldNames ? '' : 'EventPayload', protoName: 'EventPayload', subBuilder: NotifNotifyByMailPayload.create)
|
|
..aOM<NotifNotifyByMailPayload>(5, _omitFieldNames ? '' : 'PreviousPayload', protoName: 'PreviousPayload', subBuilder: NotifNotifyByMailPayload.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
'Will be removed in next major version')
|
|
NotifNotifyByMail clone() => NotifNotifyByMail()..mergeFromMessage(this);
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
'Will be removed in next major version')
|
|
NotifNotifyByMail copyWith(void Function(NotifNotifyByMail) updates) => super.copyWith((message) => updates(message as NotifNotifyByMail)) as NotifNotifyByMail;
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static NotifNotifyByMail create() => NotifNotifyByMail._();
|
|
NotifNotifyByMail createEmptyInstance() => create();
|
|
static $pb.PbList<NotifNotifyByMail> createRepeated() => $pb.PbList<NotifNotifyByMail>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static NotifNotifyByMail getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<NotifNotifyByMail>(create);
|
|
static NotifNotifyByMail? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$3.CommandHeader get header => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set header($3.CommandHeader v) { $_setField(1, v); }
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasHeader() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearHeader() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$3.CommandHeader ensureHeader() => $_ensure(0);
|
|
|
|
@$pb.TagNumber(2)
|
|
$3.EntityID get iD => $_getN(1);
|
|
@$pb.TagNumber(2)
|
|
set iD($3.EntityID v) { $_setField(2, v); }
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasID() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearID() => $_clearField(2);
|
|
@$pb.TagNumber(2)
|
|
$3.EntityID ensureID() => $_ensure(1);
|
|
|
|
@$pb.TagNumber(3)
|
|
NotifNotifyByMailPayload get payload => $_getN(2);
|
|
@$pb.TagNumber(3)
|
|
set payload(NotifNotifyByMailPayload v) { $_setField(3, v); }
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasPayload() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearPayload() => $_clearField(3);
|
|
@$pb.TagNumber(3)
|
|
NotifNotifyByMailPayload ensurePayload() => $_ensure(2);
|
|
|
|
@$pb.TagNumber(4)
|
|
NotifNotifyByMailPayload get eventPayload => $_getN(3);
|
|
@$pb.TagNumber(4)
|
|
set eventPayload(NotifNotifyByMailPayload v) { $_setField(4, v); }
|
|
@$pb.TagNumber(4)
|
|
$core.bool hasEventPayload() => $_has(3);
|
|
@$pb.TagNumber(4)
|
|
void clearEventPayload() => $_clearField(4);
|
|
@$pb.TagNumber(4)
|
|
NotifNotifyByMailPayload ensureEventPayload() => $_ensure(3);
|
|
|
|
@$pb.TagNumber(5)
|
|
NotifNotifyByMailPayload get previousPayload => $_getN(4);
|
|
@$pb.TagNumber(5)
|
|
set previousPayload(NotifNotifyByMailPayload v) { $_setField(5, v); }
|
|
@$pb.TagNumber(5)
|
|
$core.bool hasPreviousPayload() => $_has(4);
|
|
@$pb.TagNumber(5)
|
|
void clearPreviousPayload() => $_clearField(5);
|
|
@$pb.TagNumber(5)
|
|
NotifNotifyByMailPayload ensurePreviousPayload() => $_ensure(4);
|
|
}
|
|
|
|
///
|
|
/// NotifyChatRoom
|
|
class NotifNotifyChatRoomPayload extends $pb.GeneratedMessage {
|
|
factory NotifNotifyChatRoomPayload({
|
|
$70.NotifTypeEnum? notificationType,
|
|
$core.String? issuerID,
|
|
$core.Iterable<$core.String>? contacts,
|
|
$core.String? details,
|
|
$core.String? entityDomain,
|
|
$core.String? entityType,
|
|
$core.String? entityRefID,
|
|
$core.String? tags,
|
|
}) {
|
|
final $result = create();
|
|
if (notificationType != null) {
|
|
$result.notificationType = notificationType;
|
|
}
|
|
if (issuerID != null) {
|
|
$result.issuerID = issuerID;
|
|
}
|
|
if (contacts != null) {
|
|
$result.contacts.addAll(contacts);
|
|
}
|
|
if (details != null) {
|
|
$result.details = details;
|
|
}
|
|
if (entityDomain != null) {
|
|
$result.entityDomain = entityDomain;
|
|
}
|
|
if (entityType != null) {
|
|
$result.entityType = entityType;
|
|
}
|
|
if (entityRefID != null) {
|
|
$result.entityRefID = entityRefID;
|
|
}
|
|
if (tags != null) {
|
|
$result.tags = tags;
|
|
}
|
|
return $result;
|
|
}
|
|
NotifNotifyChatRoomPayload._() : super();
|
|
factory NotifNotifyChatRoomPayload.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
factory NotifNotifyChatRoomPayload.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'NotifNotifyChatRoomPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..e<$70.NotifTypeEnum>(1, _omitFieldNames ? '' : 'NotificationType', $pb.PbFieldType.OE, protoName: 'NotificationType', defaultOrMaker: $70.NotifTypeEnum.NOTIF_TYPE_UNKNOWN, valueOf: $70.NotifTypeEnum.valueOf, enumValues: $70.NotifTypeEnum.values)
|
|
..aOS(2, _omitFieldNames ? '' : 'IssuerID', protoName: 'IssuerID')
|
|
..pPS(3, _omitFieldNames ? '' : 'Contacts', protoName: 'Contacts')
|
|
..aOS(4, _omitFieldNames ? '' : 'Details', protoName: 'Details')
|
|
..aOS(5, _omitFieldNames ? '' : 'EntityDomain', protoName: 'EntityDomain')
|
|
..aOS(6, _omitFieldNames ? '' : 'EntityType', protoName: 'EntityType')
|
|
..aOS(7, _omitFieldNames ? '' : 'EntityRefID', protoName: 'EntityRefID')
|
|
..aOS(8, _omitFieldNames ? '' : 'Tags', protoName: 'Tags')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
'Will be removed in next major version')
|
|
NotifNotifyChatRoomPayload clone() => NotifNotifyChatRoomPayload()..mergeFromMessage(this);
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
'Will be removed in next major version')
|
|
NotifNotifyChatRoomPayload copyWith(void Function(NotifNotifyChatRoomPayload) updates) => super.copyWith((message) => updates(message as NotifNotifyChatRoomPayload)) as NotifNotifyChatRoomPayload;
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static NotifNotifyChatRoomPayload create() => NotifNotifyChatRoomPayload._();
|
|
NotifNotifyChatRoomPayload createEmptyInstance() => create();
|
|
static $pb.PbList<NotifNotifyChatRoomPayload> createRepeated() => $pb.PbList<NotifNotifyChatRoomPayload>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static NotifNotifyChatRoomPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<NotifNotifyChatRoomPayload>(create);
|
|
static NotifNotifyChatRoomPayload? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$70.NotifTypeEnum get notificationType => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set notificationType($70.NotifTypeEnum v) { $_setField(1, v); }
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasNotificationType() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearNotificationType() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get issuerID => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set issuerID($core.String v) { $_setString(1, v); }
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasIssuerID() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearIssuerID() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$pb.PbList<$core.String> get contacts => $_getList(2);
|
|
|
|
@$pb.TagNumber(4)
|
|
$core.String get details => $_getSZ(3);
|
|
@$pb.TagNumber(4)
|
|
set details($core.String v) { $_setString(3, v); }
|
|
@$pb.TagNumber(4)
|
|
$core.bool hasDetails() => $_has(3);
|
|
@$pb.TagNumber(4)
|
|
void clearDetails() => $_clearField(4);
|
|
|
|
@$pb.TagNumber(5)
|
|
$core.String get entityDomain => $_getSZ(4);
|
|
@$pb.TagNumber(5)
|
|
set entityDomain($core.String v) { $_setString(4, v); }
|
|
@$pb.TagNumber(5)
|
|
$core.bool hasEntityDomain() => $_has(4);
|
|
@$pb.TagNumber(5)
|
|
void clearEntityDomain() => $_clearField(5);
|
|
|
|
@$pb.TagNumber(6)
|
|
$core.String get entityType => $_getSZ(5);
|
|
@$pb.TagNumber(6)
|
|
set entityType($core.String v) { $_setString(5, v); }
|
|
@$pb.TagNumber(6)
|
|
$core.bool hasEntityType() => $_has(5);
|
|
@$pb.TagNumber(6)
|
|
void clearEntityType() => $_clearField(6);
|
|
|
|
@$pb.TagNumber(7)
|
|
$core.String get entityRefID => $_getSZ(6);
|
|
@$pb.TagNumber(7)
|
|
set entityRefID($core.String v) { $_setString(6, v); }
|
|
@$pb.TagNumber(7)
|
|
$core.bool hasEntityRefID() => $_has(6);
|
|
@$pb.TagNumber(7)
|
|
void clearEntityRefID() => $_clearField(7);
|
|
|
|
@$pb.TagNumber(8)
|
|
$core.String get tags => $_getSZ(7);
|
|
@$pb.TagNumber(8)
|
|
set tags($core.String v) { $_setString(7, v); }
|
|
@$pb.TagNumber(8)
|
|
$core.bool hasTags() => $_has(7);
|
|
@$pb.TagNumber(8)
|
|
void clearTags() => $_clearField(8);
|
|
}
|
|
|
|
class NotifNotifyChatRoom extends $pb.GeneratedMessage {
|
|
factory NotifNotifyChatRoom({
|
|
$3.CommandHeader? header,
|
|
$3.EntityID? iD,
|
|
NotifNotifyChatRoomPayload? payload,
|
|
NotifNotifyChatRoomPayload? eventPayload,
|
|
NotifNotifyChatRoomPayload? previousPayload,
|
|
}) {
|
|
final $result = create();
|
|
if (header != null) {
|
|
$result.header = header;
|
|
}
|
|
if (iD != null) {
|
|
$result.iD = iD;
|
|
}
|
|
if (payload != null) {
|
|
$result.payload = payload;
|
|
}
|
|
if (eventPayload != null) {
|
|
$result.eventPayload = eventPayload;
|
|
}
|
|
if (previousPayload != null) {
|
|
$result.previousPayload = previousPayload;
|
|
}
|
|
return $result;
|
|
}
|
|
NotifNotifyChatRoom._() : super();
|
|
factory NotifNotifyChatRoom.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
factory NotifNotifyChatRoom.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'NotifNotifyChatRoom', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$3.CommandHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.CommandHeader.create)
|
|
..aOM<$3.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $3.EntityID.create)
|
|
..aOM<NotifNotifyChatRoomPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: NotifNotifyChatRoomPayload.create)
|
|
..aOM<NotifNotifyChatRoomPayload>(4, _omitFieldNames ? '' : 'EventPayload', protoName: 'EventPayload', subBuilder: NotifNotifyChatRoomPayload.create)
|
|
..aOM<NotifNotifyChatRoomPayload>(5, _omitFieldNames ? '' : 'PreviousPayload', protoName: 'PreviousPayload', subBuilder: NotifNotifyChatRoomPayload.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
'Will be removed in next major version')
|
|
NotifNotifyChatRoom clone() => NotifNotifyChatRoom()..mergeFromMessage(this);
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
'Will be removed in next major version')
|
|
NotifNotifyChatRoom copyWith(void Function(NotifNotifyChatRoom) updates) => super.copyWith((message) => updates(message as NotifNotifyChatRoom)) as NotifNotifyChatRoom;
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static NotifNotifyChatRoom create() => NotifNotifyChatRoom._();
|
|
NotifNotifyChatRoom createEmptyInstance() => create();
|
|
static $pb.PbList<NotifNotifyChatRoom> createRepeated() => $pb.PbList<NotifNotifyChatRoom>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static NotifNotifyChatRoom getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<NotifNotifyChatRoom>(create);
|
|
static NotifNotifyChatRoom? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$3.CommandHeader get header => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set header($3.CommandHeader v) { $_setField(1, v); }
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasHeader() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearHeader() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$3.CommandHeader ensureHeader() => $_ensure(0);
|
|
|
|
@$pb.TagNumber(2)
|
|
$3.EntityID get iD => $_getN(1);
|
|
@$pb.TagNumber(2)
|
|
set iD($3.EntityID v) { $_setField(2, v); }
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasID() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearID() => $_clearField(2);
|
|
@$pb.TagNumber(2)
|
|
$3.EntityID ensureID() => $_ensure(1);
|
|
|
|
@$pb.TagNumber(3)
|
|
NotifNotifyChatRoomPayload get payload => $_getN(2);
|
|
@$pb.TagNumber(3)
|
|
set payload(NotifNotifyChatRoomPayload v) { $_setField(3, v); }
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasPayload() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearPayload() => $_clearField(3);
|
|
@$pb.TagNumber(3)
|
|
NotifNotifyChatRoomPayload ensurePayload() => $_ensure(2);
|
|
|
|
@$pb.TagNumber(4)
|
|
NotifNotifyChatRoomPayload get eventPayload => $_getN(3);
|
|
@$pb.TagNumber(4)
|
|
set eventPayload(NotifNotifyChatRoomPayload v) { $_setField(4, v); }
|
|
@$pb.TagNumber(4)
|
|
$core.bool hasEventPayload() => $_has(3);
|
|
@$pb.TagNumber(4)
|
|
void clearEventPayload() => $_clearField(4);
|
|
@$pb.TagNumber(4)
|
|
NotifNotifyChatRoomPayload ensureEventPayload() => $_ensure(3);
|
|
|
|
@$pb.TagNumber(5)
|
|
NotifNotifyChatRoomPayload get previousPayload => $_getN(4);
|
|
@$pb.TagNumber(5)
|
|
set previousPayload(NotifNotifyChatRoomPayload v) { $_setField(5, v); }
|
|
@$pb.TagNumber(5)
|
|
$core.bool hasPreviousPayload() => $_has(4);
|
|
@$pb.TagNumber(5)
|
|
void clearPreviousPayload() => $_clearField(5);
|
|
@$pb.TagNumber(5)
|
|
NotifNotifyChatRoomPayload ensurePreviousPayload() => $_ensure(4);
|
|
}
|
|
|
|
|
|
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
|
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|