mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-24 10:08:41 +00:00
update proto
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -1,13 +1,14 @@
|
||||
// This is a generated file - do not edit.
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: bilibili/pagination.proto
|
||||
//
|
||||
// Generated from bilibili/pagination.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
|
||||
// ignore_for_file: constant_identifier_names
|
||||
// ignore_for_file: curly_braces_in_flow_control_structures
|
||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names
|
||||
|
||||
import 'dart:core' as $core;
|
||||
|
||||
@@ -21,54 +22,57 @@ class FeedPagination extends $pb.GeneratedMessage {
|
||||
$core.String? offset,
|
||||
$core.bool? isRefresh,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (pageSize != null) {
|
||||
$result.pageSize = pageSize;
|
||||
}
|
||||
if (offset != null) {
|
||||
$result.offset = offset;
|
||||
}
|
||||
if (isRefresh != null) {
|
||||
$result.isRefresh = isRefresh;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (pageSize != null) result.pageSize = pageSize;
|
||||
if (offset != null) result.offset = offset;
|
||||
if (isRefresh != null) result.isRefresh = isRefresh;
|
||||
return result;
|
||||
}
|
||||
FeedPagination._() : super();
|
||||
factory FeedPagination.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory FeedPagination.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FeedPagination', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.pagination'), createEmptyInstance: create)
|
||||
..a<$core.int>(1, _omitFieldNames ? '' : 'pageSize', $pb.PbFieldType.O3)
|
||||
FeedPagination._();
|
||||
|
||||
factory FeedPagination.fromBuffer($core.List<$core.int> data,
|
||||
[$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
|
||||
create()..mergeFromBuffer(data, registry);
|
||||
factory FeedPagination.fromJson($core.String json,
|
||||
[$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
|
||||
create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
|
||||
_omitMessageNames ? '' : 'FeedPagination',
|
||||
package:
|
||||
const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.pagination'),
|
||||
createEmptyInstance: create)
|
||||
..aI(1, _omitFieldNames ? '' : 'pageSize')
|
||||
..aOS(2, _omitFieldNames ? '' : 'offset')
|
||||
..aOB(3, _omitFieldNames ? '' : 'isRefresh')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
..hasRequiredFields = false;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
FeedPagination clone() => FeedPagination()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
FeedPagination copyWith(void Function(FeedPagination) updates) => super.copyWith((message) => updates(message as FeedPagination)) as FeedPagination;
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
FeedPagination clone() => deepCopy();
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
FeedPagination copyWith(void Function(FeedPagination) updates) =>
|
||||
super.copyWith((message) => updates(message as FeedPagination))
|
||||
as FeedPagination;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static FeedPagination create() => FeedPagination._();
|
||||
@$core.override
|
||||
FeedPagination createEmptyInstance() => create();
|
||||
static $pb.PbList<FeedPagination> createRepeated() => $pb.PbList<FeedPagination>();
|
||||
static $pb.PbList<FeedPagination> createRepeated() =>
|
||||
$pb.PbList<FeedPagination>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static FeedPagination getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<FeedPagination>(create);
|
||||
static FeedPagination getDefault() => _defaultInstance ??=
|
||||
$pb.GeneratedMessage.$_defaultFor<FeedPagination>(create);
|
||||
static FeedPagination? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.int get pageSize => $_getIZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set pageSize($core.int v) { $_setSignedInt32(0, v); }
|
||||
set pageSize($core.int value) => $_setSignedInt32(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasPageSize() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -77,7 +81,7 @@ class FeedPagination extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get offset => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set offset($core.String v) { $_setString(1, v); }
|
||||
set offset($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasOffset() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
@@ -86,7 +90,7 @@ class FeedPagination extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool get isRefresh => $_getBF(2);
|
||||
@$pb.TagNumber(3)
|
||||
set isRefresh($core.bool v) { $_setBool(2, v); }
|
||||
set isRefresh($core.bool value) => $_setBool(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasIsRefresh() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
@@ -99,54 +103,57 @@ class FeedPaginationReply extends $pb.GeneratedMessage {
|
||||
$core.String? prevOffset,
|
||||
$core.String? lastReadOffset,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (nextOffset != null) {
|
||||
$result.nextOffset = nextOffset;
|
||||
}
|
||||
if (prevOffset != null) {
|
||||
$result.prevOffset = prevOffset;
|
||||
}
|
||||
if (lastReadOffset != null) {
|
||||
$result.lastReadOffset = lastReadOffset;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (nextOffset != null) result.nextOffset = nextOffset;
|
||||
if (prevOffset != null) result.prevOffset = prevOffset;
|
||||
if (lastReadOffset != null) result.lastReadOffset = lastReadOffset;
|
||||
return result;
|
||||
}
|
||||
FeedPaginationReply._() : super();
|
||||
factory FeedPaginationReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory FeedPaginationReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FeedPaginationReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.pagination'), createEmptyInstance: create)
|
||||
FeedPaginationReply._();
|
||||
|
||||
factory FeedPaginationReply.fromBuffer($core.List<$core.int> data,
|
||||
[$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
|
||||
create()..mergeFromBuffer(data, registry);
|
||||
factory FeedPaginationReply.fromJson($core.String json,
|
||||
[$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
|
||||
create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
|
||||
_omitMessageNames ? '' : 'FeedPaginationReply',
|
||||
package:
|
||||
const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.pagination'),
|
||||
createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'nextOffset')
|
||||
..aOS(2, _omitFieldNames ? '' : 'prevOffset')
|
||||
..aOS(3, _omitFieldNames ? '' : 'lastReadOffset')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
..hasRequiredFields = false;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
FeedPaginationReply clone() => FeedPaginationReply()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
FeedPaginationReply copyWith(void Function(FeedPaginationReply) updates) => super.copyWith((message) => updates(message as FeedPaginationReply)) as FeedPaginationReply;
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
FeedPaginationReply clone() => deepCopy();
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
FeedPaginationReply copyWith(void Function(FeedPaginationReply) updates) =>
|
||||
super.copyWith((message) => updates(message as FeedPaginationReply))
|
||||
as FeedPaginationReply;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static FeedPaginationReply create() => FeedPaginationReply._();
|
||||
@$core.override
|
||||
FeedPaginationReply createEmptyInstance() => create();
|
||||
static $pb.PbList<FeedPaginationReply> createRepeated() => $pb.PbList<FeedPaginationReply>();
|
||||
static $pb.PbList<FeedPaginationReply> createRepeated() =>
|
||||
$pb.PbList<FeedPaginationReply>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static FeedPaginationReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<FeedPaginationReply>(create);
|
||||
static FeedPaginationReply getDefault() => _defaultInstance ??=
|
||||
$pb.GeneratedMessage.$_defaultFor<FeedPaginationReply>(create);
|
||||
static FeedPaginationReply? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get nextOffset => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set nextOffset($core.String v) { $_setString(0, v); }
|
||||
set nextOffset($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasNextOffset() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -155,7 +162,7 @@ class FeedPaginationReply extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get prevOffset => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set prevOffset($core.String v) { $_setString(1, v); }
|
||||
set prevOffset($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasPrevOffset() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
@@ -164,7 +171,7 @@ class FeedPaginationReply extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get lastReadOffset => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set lastReadOffset($core.String v) { $_setString(2, v); }
|
||||
set lastReadOffset($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasLastReadOffset() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
@@ -176,50 +183,53 @@ class Pagination extends $pb.GeneratedMessage {
|
||||
$core.int? pageSize,
|
||||
$core.String? next,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (pageSize != null) {
|
||||
$result.pageSize = pageSize;
|
||||
}
|
||||
if (next != null) {
|
||||
$result.next = next;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (pageSize != null) result.pageSize = pageSize;
|
||||
if (next != null) result.next = next;
|
||||
return result;
|
||||
}
|
||||
Pagination._() : super();
|
||||
factory Pagination.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory Pagination.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Pagination', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.pagination'), createEmptyInstance: create)
|
||||
..a<$core.int>(1, _omitFieldNames ? '' : 'pageSize', $pb.PbFieldType.O3)
|
||||
Pagination._();
|
||||
|
||||
factory Pagination.fromBuffer($core.List<$core.int> data,
|
||||
[$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
|
||||
create()..mergeFromBuffer(data, registry);
|
||||
factory Pagination.fromJson($core.String json,
|
||||
[$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
|
||||
create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
|
||||
_omitMessageNames ? '' : 'Pagination',
|
||||
package:
|
||||
const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.pagination'),
|
||||
createEmptyInstance: create)
|
||||
..aI(1, _omitFieldNames ? '' : 'pageSize')
|
||||
..aOS(2, _omitFieldNames ? '' : 'next')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
..hasRequiredFields = false;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
Pagination clone() => Pagination()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
Pagination copyWith(void Function(Pagination) updates) => super.copyWith((message) => updates(message as Pagination)) as Pagination;
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
Pagination clone() => deepCopy();
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
Pagination copyWith(void Function(Pagination) updates) =>
|
||||
super.copyWith((message) => updates(message as Pagination)) as Pagination;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Pagination create() => Pagination._();
|
||||
@$core.override
|
||||
Pagination createEmptyInstance() => create();
|
||||
static $pb.PbList<Pagination> createRepeated() => $pb.PbList<Pagination>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Pagination getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Pagination>(create);
|
||||
static Pagination getDefault() => _defaultInstance ??=
|
||||
$pb.GeneratedMessage.$_defaultFor<Pagination>(create);
|
||||
static Pagination? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.int get pageSize => $_getIZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set pageSize($core.int v) { $_setSignedInt32(0, v); }
|
||||
set pageSize($core.int value) => $_setSignedInt32(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasPageSize() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -228,7 +238,7 @@ class Pagination extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get next => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set next($core.String v) { $_setString(1, v); }
|
||||
set next($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasNext() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
@@ -240,50 +250,55 @@ class PaginationReply extends $pb.GeneratedMessage {
|
||||
$core.String? next,
|
||||
$core.String? prev,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (next != null) {
|
||||
$result.next = next;
|
||||
}
|
||||
if (prev != null) {
|
||||
$result.prev = prev;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (next != null) result.next = next;
|
||||
if (prev != null) result.prev = prev;
|
||||
return result;
|
||||
}
|
||||
PaginationReply._() : super();
|
||||
factory PaginationReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory PaginationReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'PaginationReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.pagination'), createEmptyInstance: create)
|
||||
PaginationReply._();
|
||||
|
||||
factory PaginationReply.fromBuffer($core.List<$core.int> data,
|
||||
[$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
|
||||
create()..mergeFromBuffer(data, registry);
|
||||
factory PaginationReply.fromJson($core.String json,
|
||||
[$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
|
||||
create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
|
||||
_omitMessageNames ? '' : 'PaginationReply',
|
||||
package:
|
||||
const $pb.PackageName(_omitMessageNames ? '' : 'bilibili.pagination'),
|
||||
createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'next')
|
||||
..aOS(2, _omitFieldNames ? '' : 'prev')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
..hasRequiredFields = false;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
PaginationReply clone() => PaginationReply()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
PaginationReply copyWith(void Function(PaginationReply) updates) => super.copyWith((message) => updates(message as PaginationReply)) as PaginationReply;
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
PaginationReply clone() => deepCopy();
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
PaginationReply copyWith(void Function(PaginationReply) updates) =>
|
||||
super.copyWith((message) => updates(message as PaginationReply))
|
||||
as PaginationReply;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PaginationReply create() => PaginationReply._();
|
||||
@$core.override
|
||||
PaginationReply createEmptyInstance() => create();
|
||||
static $pb.PbList<PaginationReply> createRepeated() => $pb.PbList<PaginationReply>();
|
||||
static $pb.PbList<PaginationReply> createRepeated() =>
|
||||
$pb.PbList<PaginationReply>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PaginationReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PaginationReply>(create);
|
||||
static PaginationReply getDefault() => _defaultInstance ??=
|
||||
$pb.GeneratedMessage.$_defaultFor<PaginationReply>(create);
|
||||
static PaginationReply? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get next => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set next($core.String v) { $_setString(0, v); }
|
||||
set next($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasNext() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -292,13 +307,14 @@ class PaginationReply extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get prev => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set prev($core.String v) { $_setString(1, v); }
|
||||
set prev($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasPrev() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearPrev() => $_clearField(2);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
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