track_offical.pb.dart 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  1. //
  2. // Generated code. Do not modify.
  3. // source: track_offical.proto
  4. //
  5. // @dart = 2.12
  6. // ignore_for_file: annotate_overrides, camel_case_types, comment_references
  7. // ignore_for_file: constant_identifier_names, library_prefixes
  8. // ignore_for_file: non_constant_identifier_names, prefer_final_fields
  9. // ignore_for_file: unnecessary_import, unnecessary_this, unused_import
  10. import 'dart:core' as $core;
  11. import 'package:fixnum/fixnum.dart' as $fixnum;
  12. import 'package:protobuf/protobuf.dart' as $pb;
  13. import 'base.pb.dart' as $0;
  14. import 'google/protobuf/timestamp.pb.dart' as $2;
  15. class ToActivityListReply extends $pb.GeneratedMessage {
  16. factory ToActivityListReply({
  17. $core.Iterable<$0.ToActionBasicInfo>? list,
  18. }) {
  19. final $result = create();
  20. if (list != null) {
  21. $result.list.addAll(list);
  22. }
  23. return $result;
  24. }
  25. ToActivityListReply._() : super();
  26. factory ToActivityListReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  27. factory ToActivityListReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  28. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToActivityListReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  29. ..pc<$0.ToActionBasicInfo>(1, _omitFieldNames ? '' : 'list', $pb.PbFieldType.PM, subBuilder: $0.ToActionBasicInfo.create)
  30. ..hasRequiredFields = false
  31. ;
  32. @$core.Deprecated(
  33. 'Using this can add significant overhead to your binary. '
  34. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  35. 'Will be removed in next major version')
  36. ToActivityListReply clone() => ToActivityListReply()..mergeFromMessage(this);
  37. @$core.Deprecated(
  38. 'Using this can add significant overhead to your binary. '
  39. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  40. 'Will be removed in next major version')
  41. ToActivityListReply copyWith(void Function(ToActivityListReply) updates) => super.copyWith((message) => updates(message as ToActivityListReply)) as ToActivityListReply;
  42. $pb.BuilderInfo get info_ => _i;
  43. @$core.pragma('dart2js:noInline')
  44. static ToActivityListReply create() => ToActivityListReply._();
  45. ToActivityListReply createEmptyInstance() => create();
  46. static $pb.PbList<ToActivityListReply> createRepeated() => $pb.PbList<ToActivityListReply>();
  47. @$core.pragma('dart2js:noInline')
  48. static ToActivityListReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToActivityListReply>(create);
  49. static ToActivityListReply? _defaultInstance;
  50. @$pb.TagNumber(1)
  51. $core.List<$0.ToActionBasicInfo> get list => $_getList(0);
  52. }
  53. class ToMatchRegusterListRequest extends $pb.GeneratedMessage {
  54. factory ToMatchRegusterListRequest({
  55. $core.int? mapId,
  56. $fixnum.Int64? startSecond,
  57. }) {
  58. final $result = create();
  59. if (mapId != null) {
  60. $result.mapId = mapId;
  61. }
  62. if (startSecond != null) {
  63. $result.startSecond = startSecond;
  64. }
  65. return $result;
  66. }
  67. ToMatchRegusterListRequest._() : super();
  68. factory ToMatchRegusterListRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  69. factory ToMatchRegusterListRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  70. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToMatchRegusterListRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  71. ..a<$core.int>(1, _omitFieldNames ? '' : 'mapId', $pb.PbFieldType.O3, protoName: 'mapId')
  72. ..aInt64(2, _omitFieldNames ? '' : 'startSecond', protoName: 'startSecond')
  73. ..hasRequiredFields = false
  74. ;
  75. @$core.Deprecated(
  76. 'Using this can add significant overhead to your binary. '
  77. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  78. 'Will be removed in next major version')
  79. ToMatchRegusterListRequest clone() => ToMatchRegusterListRequest()..mergeFromMessage(this);
  80. @$core.Deprecated(
  81. 'Using this can add significant overhead to your binary. '
  82. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  83. 'Will be removed in next major version')
  84. ToMatchRegusterListRequest copyWith(void Function(ToMatchRegusterListRequest) updates) => super.copyWith((message) => updates(message as ToMatchRegusterListRequest)) as ToMatchRegusterListRequest;
  85. $pb.BuilderInfo get info_ => _i;
  86. @$core.pragma('dart2js:noInline')
  87. static ToMatchRegusterListRequest create() => ToMatchRegusterListRequest._();
  88. ToMatchRegusterListRequest createEmptyInstance() => create();
  89. static $pb.PbList<ToMatchRegusterListRequest> createRepeated() => $pb.PbList<ToMatchRegusterListRequest>();
  90. @$core.pragma('dart2js:noInline')
  91. static ToMatchRegusterListRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToMatchRegusterListRequest>(create);
  92. static ToMatchRegusterListRequest? _defaultInstance;
  93. @$pb.TagNumber(1)
  94. $core.int get mapId => $_getIZ(0);
  95. @$pb.TagNumber(1)
  96. set mapId($core.int v) { $_setSignedInt32(0, v); }
  97. @$pb.TagNumber(1)
  98. $core.bool hasMapId() => $_has(0);
  99. @$pb.TagNumber(1)
  100. void clearMapId() => clearField(1);
  101. @$pb.TagNumber(2)
  102. $fixnum.Int64 get startSecond => $_getI64(1);
  103. @$pb.TagNumber(2)
  104. set startSecond($fixnum.Int64 v) { $_setInt64(1, v); }
  105. @$pb.TagNumber(2)
  106. $core.bool hasStartSecond() => $_has(1);
  107. @$pb.TagNumber(2)
  108. void clearStartSecond() => clearField(2);
  109. }
  110. class ToMatchRegusterListReply extends $pb.GeneratedMessage {
  111. factory ToMatchRegusterListReply({
  112. $core.Iterable<MatchRegusterInfo>? list,
  113. }) {
  114. final $result = create();
  115. if (list != null) {
  116. $result.list.addAll(list);
  117. }
  118. return $result;
  119. }
  120. ToMatchRegusterListReply._() : super();
  121. factory ToMatchRegusterListReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  122. factory ToMatchRegusterListReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  123. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToMatchRegusterListReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  124. ..pc<MatchRegusterInfo>(1, _omitFieldNames ? '' : 'list', $pb.PbFieldType.PM, subBuilder: MatchRegusterInfo.create)
  125. ..hasRequiredFields = false
  126. ;
  127. @$core.Deprecated(
  128. 'Using this can add significant overhead to your binary. '
  129. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  130. 'Will be removed in next major version')
  131. ToMatchRegusterListReply clone() => ToMatchRegusterListReply()..mergeFromMessage(this);
  132. @$core.Deprecated(
  133. 'Using this can add significant overhead to your binary. '
  134. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  135. 'Will be removed in next major version')
  136. ToMatchRegusterListReply copyWith(void Function(ToMatchRegusterListReply) updates) => super.copyWith((message) => updates(message as ToMatchRegusterListReply)) as ToMatchRegusterListReply;
  137. $pb.BuilderInfo get info_ => _i;
  138. @$core.pragma('dart2js:noInline')
  139. static ToMatchRegusterListReply create() => ToMatchRegusterListReply._();
  140. ToMatchRegusterListReply createEmptyInstance() => create();
  141. static $pb.PbList<ToMatchRegusterListReply> createRepeated() => $pb.PbList<ToMatchRegusterListReply>();
  142. @$core.pragma('dart2js:noInline')
  143. static ToMatchRegusterListReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToMatchRegusterListReply>(create);
  144. static ToMatchRegusterListReply? _defaultInstance;
  145. @$pb.TagNumber(1)
  146. $core.List<MatchRegusterInfo> get list => $_getList(0);
  147. }
  148. class MatchRegusterInfo extends $pb.GeneratedMessage {
  149. factory MatchRegusterInfo({
  150. $core.int? id,
  151. $core.String? name,
  152. $core.int? totalUserNum,
  153. $core.String? qrCode,
  154. $core.bool? isAllowEdit,
  155. $core.Iterable<ToChackInsInfo>? userList,
  156. }) {
  157. final $result = create();
  158. if (id != null) {
  159. $result.id = id;
  160. }
  161. if (name != null) {
  162. $result.name = name;
  163. }
  164. if (totalUserNum != null) {
  165. $result.totalUserNum = totalUserNum;
  166. }
  167. if (qrCode != null) {
  168. $result.qrCode = qrCode;
  169. }
  170. if (isAllowEdit != null) {
  171. $result.isAllowEdit = isAllowEdit;
  172. }
  173. if (userList != null) {
  174. $result.userList.addAll(userList);
  175. }
  176. return $result;
  177. }
  178. MatchRegusterInfo._() : super();
  179. factory MatchRegusterInfo.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  180. factory MatchRegusterInfo.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  181. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MatchRegusterInfo', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  182. ..a<$core.int>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.O3)
  183. ..aOS(2, _omitFieldNames ? '' : 'name')
  184. ..a<$core.int>(3, _omitFieldNames ? '' : 'totalUserNum', $pb.PbFieldType.O3, protoName: 'totalUserNum')
  185. ..aOS(4, _omitFieldNames ? '' : 'qrCode', protoName: 'qrCode')
  186. ..aOB(5, _omitFieldNames ? '' : 'isAllowEdit', protoName: 'isAllowEdit')
  187. ..pc<ToChackInsInfo>(6, _omitFieldNames ? '' : 'userList', $pb.PbFieldType.PM, protoName: 'userList', subBuilder: ToChackInsInfo.create)
  188. ..hasRequiredFields = false
  189. ;
  190. @$core.Deprecated(
  191. 'Using this can add significant overhead to your binary. '
  192. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  193. 'Will be removed in next major version')
  194. MatchRegusterInfo clone() => MatchRegusterInfo()..mergeFromMessage(this);
  195. @$core.Deprecated(
  196. 'Using this can add significant overhead to your binary. '
  197. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  198. 'Will be removed in next major version')
  199. MatchRegusterInfo copyWith(void Function(MatchRegusterInfo) updates) => super.copyWith((message) => updates(message as MatchRegusterInfo)) as MatchRegusterInfo;
  200. $pb.BuilderInfo get info_ => _i;
  201. @$core.pragma('dart2js:noInline')
  202. static MatchRegusterInfo create() => MatchRegusterInfo._();
  203. MatchRegusterInfo createEmptyInstance() => create();
  204. static $pb.PbList<MatchRegusterInfo> createRepeated() => $pb.PbList<MatchRegusterInfo>();
  205. @$core.pragma('dart2js:noInline')
  206. static MatchRegusterInfo getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<MatchRegusterInfo>(create);
  207. static MatchRegusterInfo? _defaultInstance;
  208. @$pb.TagNumber(1)
  209. $core.int get id => $_getIZ(0);
  210. @$pb.TagNumber(1)
  211. set id($core.int v) { $_setSignedInt32(0, v); }
  212. @$pb.TagNumber(1)
  213. $core.bool hasId() => $_has(0);
  214. @$pb.TagNumber(1)
  215. void clearId() => clearField(1);
  216. @$pb.TagNumber(2)
  217. $core.String get name => $_getSZ(1);
  218. @$pb.TagNumber(2)
  219. set name($core.String v) { $_setString(1, v); }
  220. @$pb.TagNumber(2)
  221. $core.bool hasName() => $_has(1);
  222. @$pb.TagNumber(2)
  223. void clearName() => clearField(2);
  224. @$pb.TagNumber(3)
  225. $core.int get totalUserNum => $_getIZ(2);
  226. @$pb.TagNumber(3)
  227. set totalUserNum($core.int v) { $_setSignedInt32(2, v); }
  228. @$pb.TagNumber(3)
  229. $core.bool hasTotalUserNum() => $_has(2);
  230. @$pb.TagNumber(3)
  231. void clearTotalUserNum() => clearField(3);
  232. @$pb.TagNumber(4)
  233. $core.String get qrCode => $_getSZ(3);
  234. @$pb.TagNumber(4)
  235. set qrCode($core.String v) { $_setString(3, v); }
  236. @$pb.TagNumber(4)
  237. $core.bool hasQrCode() => $_has(3);
  238. @$pb.TagNumber(4)
  239. void clearQrCode() => clearField(4);
  240. @$pb.TagNumber(5)
  241. $core.bool get isAllowEdit => $_getBF(4);
  242. @$pb.TagNumber(5)
  243. set isAllowEdit($core.bool v) { $_setBool(4, v); }
  244. @$pb.TagNumber(5)
  245. $core.bool hasIsAllowEdit() => $_has(4);
  246. @$pb.TagNumber(5)
  247. void clearIsAllowEdit() => clearField(5);
  248. @$pb.TagNumber(6)
  249. $core.List<ToChackInsInfo> get userList => $_getList(5);
  250. }
  251. class ToChackInsInfo extends $pb.GeneratedMessage {
  252. factory ToChackInsInfo({
  253. $core.int? marId,
  254. $core.int? oId,
  255. $core.String? nickname,
  256. $core.String? phone,
  257. $core.String? chackInsTime,
  258. }) {
  259. final $result = create();
  260. if (marId != null) {
  261. $result.marId = marId;
  262. }
  263. if (oId != null) {
  264. $result.oId = oId;
  265. }
  266. if (nickname != null) {
  267. $result.nickname = nickname;
  268. }
  269. if (phone != null) {
  270. $result.phone = phone;
  271. }
  272. if (chackInsTime != null) {
  273. $result.chackInsTime = chackInsTime;
  274. }
  275. return $result;
  276. }
  277. ToChackInsInfo._() : super();
  278. factory ToChackInsInfo.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  279. factory ToChackInsInfo.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  280. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToChackInsInfo', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  281. ..a<$core.int>(1, _omitFieldNames ? '' : 'marId', $pb.PbFieldType.O3, protoName: 'marId')
  282. ..a<$core.int>(2, _omitFieldNames ? '' : 'oId', $pb.PbFieldType.O3, protoName: 'oId')
  283. ..aOS(3, _omitFieldNames ? '' : 'nickname')
  284. ..aOS(4, _omitFieldNames ? '' : 'phone')
  285. ..aOS(5, _omitFieldNames ? '' : 'chackInsTime', protoName: 'chackInsTime')
  286. ..hasRequiredFields = false
  287. ;
  288. @$core.Deprecated(
  289. 'Using this can add significant overhead to your binary. '
  290. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  291. 'Will be removed in next major version')
  292. ToChackInsInfo clone() => ToChackInsInfo()..mergeFromMessage(this);
  293. @$core.Deprecated(
  294. 'Using this can add significant overhead to your binary. '
  295. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  296. 'Will be removed in next major version')
  297. ToChackInsInfo copyWith(void Function(ToChackInsInfo) updates) => super.copyWith((message) => updates(message as ToChackInsInfo)) as ToChackInsInfo;
  298. $pb.BuilderInfo get info_ => _i;
  299. @$core.pragma('dart2js:noInline')
  300. static ToChackInsInfo create() => ToChackInsInfo._();
  301. ToChackInsInfo createEmptyInstance() => create();
  302. static $pb.PbList<ToChackInsInfo> createRepeated() => $pb.PbList<ToChackInsInfo>();
  303. @$core.pragma('dart2js:noInline')
  304. static ToChackInsInfo getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToChackInsInfo>(create);
  305. static ToChackInsInfo? _defaultInstance;
  306. @$pb.TagNumber(1)
  307. $core.int get marId => $_getIZ(0);
  308. @$pb.TagNumber(1)
  309. set marId($core.int v) { $_setSignedInt32(0, v); }
  310. @$pb.TagNumber(1)
  311. $core.bool hasMarId() => $_has(0);
  312. @$pb.TagNumber(1)
  313. void clearMarId() => clearField(1);
  314. @$pb.TagNumber(2)
  315. $core.int get oId => $_getIZ(1);
  316. @$pb.TagNumber(2)
  317. set oId($core.int v) { $_setSignedInt32(1, v); }
  318. @$pb.TagNumber(2)
  319. $core.bool hasOId() => $_has(1);
  320. @$pb.TagNumber(2)
  321. void clearOId() => clearField(2);
  322. @$pb.TagNumber(3)
  323. $core.String get nickname => $_getSZ(2);
  324. @$pb.TagNumber(3)
  325. set nickname($core.String v) { $_setString(2, v); }
  326. @$pb.TagNumber(3)
  327. $core.bool hasNickname() => $_has(2);
  328. @$pb.TagNumber(3)
  329. void clearNickname() => clearField(3);
  330. @$pb.TagNumber(4)
  331. $core.String get phone => $_getSZ(3);
  332. @$pb.TagNumber(4)
  333. set phone($core.String v) { $_setString(3, v); }
  334. @$pb.TagNumber(4)
  335. $core.bool hasPhone() => $_has(3);
  336. @$pb.TagNumber(4)
  337. void clearPhone() => clearField(4);
  338. @$pb.TagNumber(5)
  339. $core.String get chackInsTime => $_getSZ(4);
  340. @$pb.TagNumber(5)
  341. set chackInsTime($core.String v) { $_setString(4, v); }
  342. @$pb.TagNumber(5)
  343. $core.bool hasChackInsTime() => $_has(4);
  344. @$pb.TagNumber(5)
  345. void clearChackInsTime() => clearField(5);
  346. }
  347. class ToMatchRegusterAddRequest extends $pb.GeneratedMessage {
  348. factory ToMatchRegusterAddRequest({
  349. $core.String? regName,
  350. $2.Timestamp? startAt,
  351. $2.Timestamp? stopAt,
  352. $core.int? actId,
  353. $core.bool? isQueryPwd,
  354. $core.String? queryPasswd,
  355. }) {
  356. final $result = create();
  357. if (regName != null) {
  358. $result.regName = regName;
  359. }
  360. if (startAt != null) {
  361. $result.startAt = startAt;
  362. }
  363. if (stopAt != null) {
  364. $result.stopAt = stopAt;
  365. }
  366. if (actId != null) {
  367. $result.actId = actId;
  368. }
  369. if (isQueryPwd != null) {
  370. $result.isQueryPwd = isQueryPwd;
  371. }
  372. if (queryPasswd != null) {
  373. $result.queryPasswd = queryPasswd;
  374. }
  375. return $result;
  376. }
  377. ToMatchRegusterAddRequest._() : super();
  378. factory ToMatchRegusterAddRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  379. factory ToMatchRegusterAddRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  380. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToMatchRegusterAddRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  381. ..aOS(1, _omitFieldNames ? '' : 'regName', protoName: 'regName')
  382. ..aOM<$2.Timestamp>(2, _omitFieldNames ? '' : 'startAt', subBuilder: $2.Timestamp.create)
  383. ..aOM<$2.Timestamp>(3, _omitFieldNames ? '' : 'stopAt', subBuilder: $2.Timestamp.create)
  384. ..a<$core.int>(4, _omitFieldNames ? '' : 'actId', $pb.PbFieldType.O3, protoName: 'actId')
  385. ..aOB(5, _omitFieldNames ? '' : 'isQueryPwd', protoName: 'isQueryPwd')
  386. ..aOS(6, _omitFieldNames ? '' : 'queryPasswd', protoName: 'queryPasswd')
  387. ..hasRequiredFields = false
  388. ;
  389. @$core.Deprecated(
  390. 'Using this can add significant overhead to your binary. '
  391. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  392. 'Will be removed in next major version')
  393. ToMatchRegusterAddRequest clone() => ToMatchRegusterAddRequest()..mergeFromMessage(this);
  394. @$core.Deprecated(
  395. 'Using this can add significant overhead to your binary. '
  396. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  397. 'Will be removed in next major version')
  398. ToMatchRegusterAddRequest copyWith(void Function(ToMatchRegusterAddRequest) updates) => super.copyWith((message) => updates(message as ToMatchRegusterAddRequest)) as ToMatchRegusterAddRequest;
  399. $pb.BuilderInfo get info_ => _i;
  400. @$core.pragma('dart2js:noInline')
  401. static ToMatchRegusterAddRequest create() => ToMatchRegusterAddRequest._();
  402. ToMatchRegusterAddRequest createEmptyInstance() => create();
  403. static $pb.PbList<ToMatchRegusterAddRequest> createRepeated() => $pb.PbList<ToMatchRegusterAddRequest>();
  404. @$core.pragma('dart2js:noInline')
  405. static ToMatchRegusterAddRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToMatchRegusterAddRequest>(create);
  406. static ToMatchRegusterAddRequest? _defaultInstance;
  407. @$pb.TagNumber(1)
  408. $core.String get regName => $_getSZ(0);
  409. @$pb.TagNumber(1)
  410. set regName($core.String v) { $_setString(0, v); }
  411. @$pb.TagNumber(1)
  412. $core.bool hasRegName() => $_has(0);
  413. @$pb.TagNumber(1)
  414. void clearRegName() => clearField(1);
  415. @$pb.TagNumber(2)
  416. $2.Timestamp get startAt => $_getN(1);
  417. @$pb.TagNumber(2)
  418. set startAt($2.Timestamp v) { setField(2, v); }
  419. @$pb.TagNumber(2)
  420. $core.bool hasStartAt() => $_has(1);
  421. @$pb.TagNumber(2)
  422. void clearStartAt() => clearField(2);
  423. @$pb.TagNumber(2)
  424. $2.Timestamp ensureStartAt() => $_ensure(1);
  425. @$pb.TagNumber(3)
  426. $2.Timestamp get stopAt => $_getN(2);
  427. @$pb.TagNumber(3)
  428. set stopAt($2.Timestamp v) { setField(3, v); }
  429. @$pb.TagNumber(3)
  430. $core.bool hasStopAt() => $_has(2);
  431. @$pb.TagNumber(3)
  432. void clearStopAt() => clearField(3);
  433. @$pb.TagNumber(3)
  434. $2.Timestamp ensureStopAt() => $_ensure(2);
  435. @$pb.TagNumber(4)
  436. $core.int get actId => $_getIZ(3);
  437. @$pb.TagNumber(4)
  438. set actId($core.int v) { $_setSignedInt32(3, v); }
  439. @$pb.TagNumber(4)
  440. $core.bool hasActId() => $_has(3);
  441. @$pb.TagNumber(4)
  442. void clearActId() => clearField(4);
  443. @$pb.TagNumber(5)
  444. $core.bool get isQueryPwd => $_getBF(4);
  445. @$pb.TagNumber(5)
  446. set isQueryPwd($core.bool v) { $_setBool(4, v); }
  447. @$pb.TagNumber(5)
  448. $core.bool hasIsQueryPwd() => $_has(4);
  449. @$pb.TagNumber(5)
  450. void clearIsQueryPwd() => clearField(5);
  451. @$pb.TagNumber(6)
  452. $core.String get queryPasswd => $_getSZ(5);
  453. @$pb.TagNumber(6)
  454. set queryPasswd($core.String v) { $_setString(5, v); }
  455. @$pb.TagNumber(6)
  456. $core.bool hasQueryPasswd() => $_has(5);
  457. @$pb.TagNumber(6)
  458. void clearQueryPasswd() => clearField(6);
  459. }
  460. const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
  461. const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');