493 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Dart
		
	
	
	
			
		
		
	
	
			493 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Dart
		
	
	
	
| // This is a generated file - do not edit.
 | |
| //
 | |
| // Generated from bookmark.proto.
 | |
| 
 | |
| // @dart = 3.3
 | |
| 
 | |
| // ignore_for_file: annotate_overrides, camel_case_types, comment_references
 | |
| // 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;
 | |
| 
 | |
| import 'package:fixnum/fixnum.dart' as $fixnum;
 | |
| import 'package:protobuf/protobuf.dart' as $pb;
 | |
| 
 | |
| export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
 | |
| 
 | |
| class CreateBookmarkRequest extends $pb.GeneratedMessage {
 | |
|   factory CreateBookmarkRequest({
 | |
|     $fixnum.Int64? cloudId,
 | |
|     $core.String? cloudIdentity,
 | |
|     $core.String? title,
 | |
|     $core.String? url,
 | |
|     $core.String? description,
 | |
|     $core.String? category,
 | |
|     $core.String? tags,
 | |
|     $core.String? icon,
 | |
|     $core.bool? isPrivate,
 | |
|   }) {
 | |
|     final result = create();
 | |
|     if (cloudId != null) result.cloudId = cloudId;
 | |
|     if (cloudIdentity != null) result.cloudIdentity = cloudIdentity;
 | |
|     if (title != null) result.title = title;
 | |
|     if (url != null) result.url = url;
 | |
|     if (description != null) result.description = description;
 | |
|     if (category != null) result.category = category;
 | |
|     if (tags != null) result.tags = tags;
 | |
|     if (icon != null) result.icon = icon;
 | |
|     if (isPrivate != null) result.isPrivate = isPrivate;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   CreateBookmarkRequest._();
 | |
| 
 | |
|   factory CreateBookmarkRequest.fromBuffer($core.List<$core.int> data,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromBuffer(data, registry);
 | |
|   factory CreateBookmarkRequest.fromJson($core.String json,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromJson(json, registry);
 | |
| 
 | |
|   static final $pb.BuilderInfo _i = $pb.BuilderInfo(
 | |
|       _omitMessageNames ? '' : 'CreateBookmarkRequest',
 | |
|       package: const $pb.PackageName(_omitMessageNames ? '' : 'cloud'),
 | |
|       createEmptyInstance: create)
 | |
|     ..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'cloudId', $pb.PbFieldType.OU6,
 | |
|         defaultOrMaker: $fixnum.Int64.ZERO)
 | |
|     ..aOS(2, _omitFieldNames ? '' : 'cloudIdentity')
 | |
|     ..aOS(3, _omitFieldNames ? '' : 'title')
 | |
|     ..aOS(4, _omitFieldNames ? '' : 'url')
 | |
|     ..aOS(5, _omitFieldNames ? '' : 'description')
 | |
|     ..aOS(6, _omitFieldNames ? '' : 'category')
 | |
|     ..aOS(7, _omitFieldNames ? '' : 'tags')
 | |
|     ..aOS(8, _omitFieldNames ? '' : 'icon')
 | |
|     ..aOB(9, _omitFieldNames ? '' : 'isPrivate')
 | |
|     ..hasRequiredFields = false;
 | |
| 
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   CreateBookmarkRequest clone() =>
 | |
|       CreateBookmarkRequest()..mergeFromMessage(this);
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   CreateBookmarkRequest copyWith(
 | |
|           void Function(CreateBookmarkRequest) updates) =>
 | |
|       super.copyWith((message) => updates(message as CreateBookmarkRequest))
 | |
|           as CreateBookmarkRequest;
 | |
| 
 | |
|   @$core.override
 | |
|   $pb.BuilderInfo get info_ => _i;
 | |
| 
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static CreateBookmarkRequest create() => CreateBookmarkRequest._();
 | |
|   @$core.override
 | |
|   CreateBookmarkRequest createEmptyInstance() => create();
 | |
|   static $pb.PbList<CreateBookmarkRequest> createRepeated() =>
 | |
|       $pb.PbList<CreateBookmarkRequest>();
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static CreateBookmarkRequest getDefault() => _defaultInstance ??=
 | |
|       $pb.GeneratedMessage.$_defaultFor<CreateBookmarkRequest>(create);
 | |
|   static CreateBookmarkRequest? _defaultInstance;
 | |
| 
 | |
|   @$pb.TagNumber(1)
 | |
|   $fixnum.Int64 get cloudId => $_getI64(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   set cloudId($fixnum.Int64 value) => $_setInt64(0, value);
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.bool hasCloudId() => $_has(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   void clearCloudId() => $_clearField(1);
 | |
| 
 | |
|   @$pb.TagNumber(2)
 | |
|   $core.String get cloudIdentity => $_getSZ(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   set cloudIdentity($core.String value) => $_setString(1, value);
 | |
|   @$pb.TagNumber(2)
 | |
|   $core.bool hasCloudIdentity() => $_has(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   void clearCloudIdentity() => $_clearField(2);
 | |
| 
 | |
|   @$pb.TagNumber(3)
 | |
|   $core.String get title => $_getSZ(2);
 | |
|   @$pb.TagNumber(3)
 | |
|   set title($core.String value) => $_setString(2, value);
 | |
|   @$pb.TagNumber(3)
 | |
|   $core.bool hasTitle() => $_has(2);
 | |
|   @$pb.TagNumber(3)
 | |
|   void clearTitle() => $_clearField(3);
 | |
| 
 | |
|   @$pb.TagNumber(4)
 | |
|   $core.String get url => $_getSZ(3);
 | |
|   @$pb.TagNumber(4)
 | |
|   set url($core.String value) => $_setString(3, value);
 | |
|   @$pb.TagNumber(4)
 | |
|   $core.bool hasUrl() => $_has(3);
 | |
|   @$pb.TagNumber(4)
 | |
|   void clearUrl() => $_clearField(4);
 | |
| 
 | |
|   @$pb.TagNumber(5)
 | |
|   $core.String get description => $_getSZ(4);
 | |
|   @$pb.TagNumber(5)
 | |
|   set description($core.String value) => $_setString(4, value);
 | |
|   @$pb.TagNumber(5)
 | |
|   $core.bool hasDescription() => $_has(4);
 | |
|   @$pb.TagNumber(5)
 | |
|   void clearDescription() => $_clearField(5);
 | |
| 
 | |
|   @$pb.TagNumber(6)
 | |
|   $core.String get category => $_getSZ(5);
 | |
|   @$pb.TagNumber(6)
 | |
|   set category($core.String value) => $_setString(5, value);
 | |
|   @$pb.TagNumber(6)
 | |
|   $core.bool hasCategory() => $_has(5);
 | |
|   @$pb.TagNumber(6)
 | |
|   void clearCategory() => $_clearField(6);
 | |
| 
 | |
|   @$pb.TagNumber(7)
 | |
|   $core.String get tags => $_getSZ(6);
 | |
|   @$pb.TagNumber(7)
 | |
|   set tags($core.String value) => $_setString(6, value);
 | |
|   @$pb.TagNumber(7)
 | |
|   $core.bool hasTags() => $_has(6);
 | |
|   @$pb.TagNumber(7)
 | |
|   void clearTags() => $_clearField(7);
 | |
| 
 | |
|   @$pb.TagNumber(8)
 | |
|   $core.String get icon => $_getSZ(7);
 | |
|   @$pb.TagNumber(8)
 | |
|   set icon($core.String value) => $_setString(7, value);
 | |
|   @$pb.TagNumber(8)
 | |
|   $core.bool hasIcon() => $_has(7);
 | |
|   @$pb.TagNumber(8)
 | |
|   void clearIcon() => $_clearField(8);
 | |
| 
 | |
|   @$pb.TagNumber(9)
 | |
|   $core.bool get isPrivate => $_getBF(8);
 | |
|   @$pb.TagNumber(9)
 | |
|   set isPrivate($core.bool value) => $_setBool(8, value);
 | |
|   @$pb.TagNumber(9)
 | |
|   $core.bool hasIsPrivate() => $_has(8);
 | |
|   @$pb.TagNumber(9)
 | |
|   void clearIsPrivate() => $_clearField(9);
 | |
| }
 | |
| 
 | |
| class ListBookmarksResponse extends $pb.GeneratedMessage {
 | |
|   factory ListBookmarksResponse({
 | |
|     $core.Iterable<CloudBookmarkItem>? bookmarks,
 | |
|     $fixnum.Int64? total,
 | |
|   }) {
 | |
|     final result = create();
 | |
|     if (bookmarks != null) result.bookmarks.addAll(bookmarks);
 | |
|     if (total != null) result.total = total;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   ListBookmarksResponse._();
 | |
| 
 | |
|   factory ListBookmarksResponse.fromBuffer($core.List<$core.int> data,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromBuffer(data, registry);
 | |
|   factory ListBookmarksResponse.fromJson($core.String json,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromJson(json, registry);
 | |
| 
 | |
|   static final $pb.BuilderInfo _i = $pb.BuilderInfo(
 | |
|       _omitMessageNames ? '' : 'ListBookmarksResponse',
 | |
|       package: const $pb.PackageName(_omitMessageNames ? '' : 'cloud'),
 | |
|       createEmptyInstance: create)
 | |
|     ..pc<CloudBookmarkItem>(
 | |
|         1, _omitFieldNames ? '' : 'bookmarks', $pb.PbFieldType.PM,
 | |
|         subBuilder: CloudBookmarkItem.create)
 | |
|     ..aInt64(2, _omitFieldNames ? '' : 'total')
 | |
|     ..hasRequiredFields = false;
 | |
| 
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   ListBookmarksResponse clone() =>
 | |
|       ListBookmarksResponse()..mergeFromMessage(this);
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   ListBookmarksResponse copyWith(
 | |
|           void Function(ListBookmarksResponse) updates) =>
 | |
|       super.copyWith((message) => updates(message as ListBookmarksResponse))
 | |
|           as ListBookmarksResponse;
 | |
| 
 | |
|   @$core.override
 | |
|   $pb.BuilderInfo get info_ => _i;
 | |
| 
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static ListBookmarksResponse create() => ListBookmarksResponse._();
 | |
|   @$core.override
 | |
|   ListBookmarksResponse createEmptyInstance() => create();
 | |
|   static $pb.PbList<ListBookmarksResponse> createRepeated() =>
 | |
|       $pb.PbList<ListBookmarksResponse>();
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static ListBookmarksResponse getDefault() => _defaultInstance ??=
 | |
|       $pb.GeneratedMessage.$_defaultFor<ListBookmarksResponse>(create);
 | |
|   static ListBookmarksResponse? _defaultInstance;
 | |
| 
 | |
|   @$pb.TagNumber(1)
 | |
|   $pb.PbList<CloudBookmarkItem> get bookmarks => $_getList(0);
 | |
| 
 | |
|   @$pb.TagNumber(2)
 | |
|   $fixnum.Int64 get total => $_getI64(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   set total($fixnum.Int64 value) => $_setInt64(1, value);
 | |
|   @$pb.TagNumber(2)
 | |
|   $core.bool hasTotal() => $_has(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   void clearTotal() => $_clearField(2);
 | |
| }
 | |
| 
 | |
| class ImportBookmarksRequest extends $pb.GeneratedMessage {
 | |
|   factory ImportBookmarksRequest({
 | |
|     $core.String? data,
 | |
|     $core.String? format,
 | |
|   }) {
 | |
|     final result = create();
 | |
|     if (data != null) result.data = data;
 | |
|     if (format != null) result.format = format;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   ImportBookmarksRequest._();
 | |
| 
 | |
|   factory ImportBookmarksRequest.fromBuffer($core.List<$core.int> data,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromBuffer(data, registry);
 | |
|   factory ImportBookmarksRequest.fromJson($core.String json,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromJson(json, registry);
 | |
| 
 | |
|   static final $pb.BuilderInfo _i = $pb.BuilderInfo(
 | |
|       _omitMessageNames ? '' : 'ImportBookmarksRequest',
 | |
|       package: const $pb.PackageName(_omitMessageNames ? '' : 'cloud'),
 | |
|       createEmptyInstance: create)
 | |
|     ..aOS(1, _omitFieldNames ? '' : 'data')
 | |
|     ..aOS(2, _omitFieldNames ? '' : 'format')
 | |
|     ..hasRequiredFields = false;
 | |
| 
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   ImportBookmarksRequest clone() =>
 | |
|       ImportBookmarksRequest()..mergeFromMessage(this);
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   ImportBookmarksRequest copyWith(
 | |
|           void Function(ImportBookmarksRequest) updates) =>
 | |
|       super.copyWith((message) => updates(message as ImportBookmarksRequest))
 | |
|           as ImportBookmarksRequest;
 | |
| 
 | |
|   @$core.override
 | |
|   $pb.BuilderInfo get info_ => _i;
 | |
| 
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static ImportBookmarksRequest create() => ImportBookmarksRequest._();
 | |
|   @$core.override
 | |
|   ImportBookmarksRequest createEmptyInstance() => create();
 | |
|   static $pb.PbList<ImportBookmarksRequest> createRepeated() =>
 | |
|       $pb.PbList<ImportBookmarksRequest>();
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static ImportBookmarksRequest getDefault() => _defaultInstance ??=
 | |
|       $pb.GeneratedMessage.$_defaultFor<ImportBookmarksRequest>(create);
 | |
|   static ImportBookmarksRequest? _defaultInstance;
 | |
| 
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.String get data => $_getSZ(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   set data($core.String value) => $_setString(0, value);
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.bool hasData() => $_has(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   void clearData() => $_clearField(1);
 | |
| 
 | |
|   @$pb.TagNumber(2)
 | |
|   $core.String get format => $_getSZ(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   set format($core.String value) => $_setString(1, value);
 | |
|   @$pb.TagNumber(2)
 | |
|   $core.bool hasFormat() => $_has(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   void clearFormat() => $_clearField(2);
 | |
| }
 | |
| 
 | |
| /// 网址收藏夹模型
 | |
| class CloudBookmarkItem extends $pb.GeneratedMessage {
 | |
|   factory CloudBookmarkItem({
 | |
|     $fixnum.Int64? id,
 | |
|     $core.String? identity,
 | |
|     $core.String? title,
 | |
|     $core.String? url,
 | |
|     $core.String? description,
 | |
|     $core.String? category,
 | |
|     $core.String? tags,
 | |
|     $core.String? icon,
 | |
|     $core.bool? isPrivate,
 | |
|     $core.String? createdAt,
 | |
|     $core.String? updatedAt,
 | |
|   }) {
 | |
|     final result = create();
 | |
|     if (id != null) result.id = id;
 | |
|     if (identity != null) result.identity = identity;
 | |
|     if (title != null) result.title = title;
 | |
|     if (url != null) result.url = url;
 | |
|     if (description != null) result.description = description;
 | |
|     if (category != null) result.category = category;
 | |
|     if (tags != null) result.tags = tags;
 | |
|     if (icon != null) result.icon = icon;
 | |
|     if (isPrivate != null) result.isPrivate = isPrivate;
 | |
|     if (createdAt != null) result.createdAt = createdAt;
 | |
|     if (updatedAt != null) result.updatedAt = updatedAt;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   CloudBookmarkItem._();
 | |
| 
 | |
|   factory CloudBookmarkItem.fromBuffer($core.List<$core.int> data,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromBuffer(data, registry);
 | |
|   factory CloudBookmarkItem.fromJson($core.String json,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromJson(json, registry);
 | |
| 
 | |
|   static final $pb.BuilderInfo _i = $pb.BuilderInfo(
 | |
|       _omitMessageNames ? '' : 'CloudBookmarkItem',
 | |
|       package: const $pb.PackageName(_omitMessageNames ? '' : 'cloud'),
 | |
|       createEmptyInstance: create)
 | |
|     ..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.OU6,
 | |
|         defaultOrMaker: $fixnum.Int64.ZERO)
 | |
|     ..aOS(2, _omitFieldNames ? '' : 'identity')
 | |
|     ..aOS(3, _omitFieldNames ? '' : 'title')
 | |
|     ..aOS(4, _omitFieldNames ? '' : 'url')
 | |
|     ..aOS(5, _omitFieldNames ? '' : 'description')
 | |
|     ..aOS(6, _omitFieldNames ? '' : 'category')
 | |
|     ..aOS(7, _omitFieldNames ? '' : 'tags')
 | |
|     ..aOS(8, _omitFieldNames ? '' : 'icon')
 | |
|     ..aOB(9, _omitFieldNames ? '' : 'isPrivate')
 | |
|     ..aOS(10, _omitFieldNames ? '' : 'createdAt')
 | |
|     ..aOS(11, _omitFieldNames ? '' : 'updatedAt')
 | |
|     ..hasRequiredFields = false;
 | |
| 
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   CloudBookmarkItem clone() => CloudBookmarkItem()..mergeFromMessage(this);
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   CloudBookmarkItem copyWith(void Function(CloudBookmarkItem) updates) =>
 | |
|       super.copyWith((message) => updates(message as CloudBookmarkItem))
 | |
|           as CloudBookmarkItem;
 | |
| 
 | |
|   @$core.override
 | |
|   $pb.BuilderInfo get info_ => _i;
 | |
| 
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static CloudBookmarkItem create() => CloudBookmarkItem._();
 | |
|   @$core.override
 | |
|   CloudBookmarkItem createEmptyInstance() => create();
 | |
|   static $pb.PbList<CloudBookmarkItem> createRepeated() =>
 | |
|       $pb.PbList<CloudBookmarkItem>();
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static CloudBookmarkItem getDefault() => _defaultInstance ??=
 | |
|       $pb.GeneratedMessage.$_defaultFor<CloudBookmarkItem>(create);
 | |
|   static CloudBookmarkItem? _defaultInstance;
 | |
| 
 | |
|   @$pb.TagNumber(1)
 | |
|   $fixnum.Int64 get id => $_getI64(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   set id($fixnum.Int64 value) => $_setInt64(0, value);
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.bool hasId() => $_has(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   void clearId() => $_clearField(1);
 | |
| 
 | |
|   @$pb.TagNumber(2)
 | |
|   $core.String get identity => $_getSZ(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   set identity($core.String value) => $_setString(1, value);
 | |
|   @$pb.TagNumber(2)
 | |
|   $core.bool hasIdentity() => $_has(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   void clearIdentity() => $_clearField(2);
 | |
| 
 | |
|   @$pb.TagNumber(3)
 | |
|   $core.String get title => $_getSZ(2);
 | |
|   @$pb.TagNumber(3)
 | |
|   set title($core.String value) => $_setString(2, value);
 | |
|   @$pb.TagNumber(3)
 | |
|   $core.bool hasTitle() => $_has(2);
 | |
|   @$pb.TagNumber(3)
 | |
|   void clearTitle() => $_clearField(3);
 | |
| 
 | |
|   @$pb.TagNumber(4)
 | |
|   $core.String get url => $_getSZ(3);
 | |
|   @$pb.TagNumber(4)
 | |
|   set url($core.String value) => $_setString(3, value);
 | |
|   @$pb.TagNumber(4)
 | |
|   $core.bool hasUrl() => $_has(3);
 | |
|   @$pb.TagNumber(4)
 | |
|   void clearUrl() => $_clearField(4);
 | |
| 
 | |
|   @$pb.TagNumber(5)
 | |
|   $core.String get description => $_getSZ(4);
 | |
|   @$pb.TagNumber(5)
 | |
|   set description($core.String value) => $_setString(4, value);
 | |
|   @$pb.TagNumber(5)
 | |
|   $core.bool hasDescription() => $_has(4);
 | |
|   @$pb.TagNumber(5)
 | |
|   void clearDescription() => $_clearField(5);
 | |
| 
 | |
|   @$pb.TagNumber(6)
 | |
|   $core.String get category => $_getSZ(5);
 | |
|   @$pb.TagNumber(6)
 | |
|   set category($core.String value) => $_setString(5, value);
 | |
|   @$pb.TagNumber(6)
 | |
|   $core.bool hasCategory() => $_has(5);
 | |
|   @$pb.TagNumber(6)
 | |
|   void clearCategory() => $_clearField(6);
 | |
| 
 | |
|   @$pb.TagNumber(7)
 | |
|   $core.String get tags => $_getSZ(6);
 | |
|   @$pb.TagNumber(7)
 | |
|   set tags($core.String value) => $_setString(6, value);
 | |
|   @$pb.TagNumber(7)
 | |
|   $core.bool hasTags() => $_has(6);
 | |
|   @$pb.TagNumber(7)
 | |
|   void clearTags() => $_clearField(7);
 | |
| 
 | |
|   @$pb.TagNumber(8)
 | |
|   $core.String get icon => $_getSZ(7);
 | |
|   @$pb.TagNumber(8)
 | |
|   set icon($core.String value) => $_setString(7, value);
 | |
|   @$pb.TagNumber(8)
 | |
|   $core.bool hasIcon() => $_has(7);
 | |
|   @$pb.TagNumber(8)
 | |
|   void clearIcon() => $_clearField(8);
 | |
| 
 | |
|   @$pb.TagNumber(9)
 | |
|   $core.bool get isPrivate => $_getBF(8);
 | |
|   @$pb.TagNumber(9)
 | |
|   set isPrivate($core.bool value) => $_setBool(8, value);
 | |
|   @$pb.TagNumber(9)
 | |
|   $core.bool hasIsPrivate() => $_has(8);
 | |
|   @$pb.TagNumber(9)
 | |
|   void clearIsPrivate() => $_clearField(9);
 | |
| 
 | |
|   @$pb.TagNumber(10)
 | |
|   $core.String get createdAt => $_getSZ(9);
 | |
|   @$pb.TagNumber(10)
 | |
|   set createdAt($core.String value) => $_setString(9, value);
 | |
|   @$pb.TagNumber(10)
 | |
|   $core.bool hasCreatedAt() => $_has(9);
 | |
|   @$pb.TagNumber(10)
 | |
|   void clearCreatedAt() => $_clearField(10);
 | |
| 
 | |
|   @$pb.TagNumber(11)
 | |
|   $core.String get updatedAt => $_getSZ(10);
 | |
|   @$pb.TagNumber(11)
 | |
|   set updatedAt($core.String value) => $_setString(10, value);
 | |
|   @$pb.TagNumber(11)
 | |
|   $core.bool hasUpdatedAt() => $_has(10);
 | |
|   @$pb.TagNumber(11)
 | |
|   void clearUpdatedAt() => $_clearField(11);
 | |
| }
 | |
| 
 | |
| const $core.bool _omitFieldNames =
 | |
|     $core.bool.fromEnvironment('protobuf.omit_field_names');
 | |
| const $core.bool _omitMessageNames =
 | |
|     $core.bool.fromEnvironment('protobuf.omit_message_names');
 |