|
|
@@ -339,6 +339,56 @@ class SignInReply extends $pb.GeneratedMessage {
|
|
|
void clearToken() => clearField(1);
|
|
|
}
|
|
|
|
|
|
+class GetQiNiuUpTokenReply extends $pb.GeneratedMessage {
|
|
|
+ factory GetQiNiuUpTokenReply({
|
|
|
+ $core.String? upToken,
|
|
|
+ }) {
|
|
|
+ final $result = create();
|
|
|
+ if (upToken != null) {
|
|
|
+ $result.upToken = upToken;
|
|
|
+ }
|
|
|
+ return $result;
|
|
|
+ }
|
|
|
+ GetQiNiuUpTokenReply._() : super();
|
|
|
+ factory GetQiNiuUpTokenReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
|
+ factory GetQiNiuUpTokenReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
+
|
|
|
+ static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetQiNiuUpTokenReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'base.v1'), createEmptyInstance: create)
|
|
|
+ ..aOS(1, _omitFieldNames ? '' : 'upToken', protoName: 'upToken')
|
|
|
+ ..hasRequiredFields = false
|
|
|
+ ;
|
|
|
+
|
|
|
+ @$core.Deprecated(
|
|
|
+ 'Using this can add significant overhead to your binary. '
|
|
|
+ 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
|
+ 'Will be removed in next major version')
|
|
|
+ GetQiNiuUpTokenReply clone() => GetQiNiuUpTokenReply()..mergeFromMessage(this);
|
|
|
+ @$core.Deprecated(
|
|
|
+ 'Using this can add significant overhead to your binary. '
|
|
|
+ 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
|
+ 'Will be removed in next major version')
|
|
|
+ GetQiNiuUpTokenReply copyWith(void Function(GetQiNiuUpTokenReply) updates) => super.copyWith((message) => updates(message as GetQiNiuUpTokenReply)) as GetQiNiuUpTokenReply;
|
|
|
+
|
|
|
+ $pb.BuilderInfo get info_ => _i;
|
|
|
+
|
|
|
+ @$core.pragma('dart2js:noInline')
|
|
|
+ static GetQiNiuUpTokenReply create() => GetQiNiuUpTokenReply._();
|
|
|
+ GetQiNiuUpTokenReply createEmptyInstance() => create();
|
|
|
+ static $pb.PbList<GetQiNiuUpTokenReply> createRepeated() => $pb.PbList<GetQiNiuUpTokenReply>();
|
|
|
+ @$core.pragma('dart2js:noInline')
|
|
|
+ static GetQiNiuUpTokenReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetQiNiuUpTokenReply>(create);
|
|
|
+ static GetQiNiuUpTokenReply? _defaultInstance;
|
|
|
+
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ $core.String get upToken => $_getSZ(0);
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ set upToken($core.String v) { $_setString(0, v); }
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ $core.bool hasUpToken() => $_has(0);
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ void clearUpToken() => clearField(1);
|
|
|
+}
|
|
|
+
|
|
|
class GameArriveControlPoint extends $pb.GeneratedMessage {
|
|
|
factory GameArriveControlPoint({
|
|
|
$fixnum.Int64? id,
|
|
|
@@ -1873,6 +1923,57 @@ class ControlPointDisplayCapture extends $pb.GeneratedMessage {
|
|
|
void clearPrompt() => clearField(1);
|
|
|
}
|
|
|
|
|
|
+/// 文字上传类型
|
|
|
+class ControlPointDisplayString extends $pb.GeneratedMessage {
|
|
|
+ factory ControlPointDisplayString({
|
|
|
+ $core.String? prompt,
|
|
|
+ }) {
|
|
|
+ final $result = create();
|
|
|
+ if (prompt != null) {
|
|
|
+ $result.prompt = prompt;
|
|
|
+ }
|
|
|
+ return $result;
|
|
|
+ }
|
|
|
+ ControlPointDisplayString._() : super();
|
|
|
+ factory ControlPointDisplayString.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
|
+ factory ControlPointDisplayString.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
+
|
|
|
+ static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ControlPointDisplayString', package: const $pb.PackageName(_omitMessageNames ? '' : 'base.v1'), createEmptyInstance: create)
|
|
|
+ ..aOS(1, _omitFieldNames ? '' : 'prompt')
|
|
|
+ ..hasRequiredFields = false
|
|
|
+ ;
|
|
|
+
|
|
|
+ @$core.Deprecated(
|
|
|
+ 'Using this can add significant overhead to your binary. '
|
|
|
+ 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
|
+ 'Will be removed in next major version')
|
|
|
+ ControlPointDisplayString clone() => ControlPointDisplayString()..mergeFromMessage(this);
|
|
|
+ @$core.Deprecated(
|
|
|
+ 'Using this can add significant overhead to your binary. '
|
|
|
+ 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
|
+ 'Will be removed in next major version')
|
|
|
+ ControlPointDisplayString copyWith(void Function(ControlPointDisplayString) updates) => super.copyWith((message) => updates(message as ControlPointDisplayString)) as ControlPointDisplayString;
|
|
|
+
|
|
|
+ $pb.BuilderInfo get info_ => _i;
|
|
|
+
|
|
|
+ @$core.pragma('dart2js:noInline')
|
|
|
+ static ControlPointDisplayString create() => ControlPointDisplayString._();
|
|
|
+ ControlPointDisplayString createEmptyInstance() => create();
|
|
|
+ static $pb.PbList<ControlPointDisplayString> createRepeated() => $pb.PbList<ControlPointDisplayString>();
|
|
|
+ @$core.pragma('dart2js:noInline')
|
|
|
+ static ControlPointDisplayString getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ControlPointDisplayString>(create);
|
|
|
+ static ControlPointDisplayString? _defaultInstance;
|
|
|
+
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ $core.String get prompt => $_getSZ(0);
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ set prompt($core.String v) { $_setString(0, v); }
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ $core.bool hasPrompt() => $_has(0);
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ void clearPrompt() => clearField(1);
|
|
|
+}
|
|
|
+
|
|
|
class ControlPoint extends $pb.GeneratedMessage {
|
|
|
factory ControlPoint({
|
|
|
$fixnum.Int64? id,
|
|
|
@@ -4593,6 +4694,64 @@ class ToUserInActionBasicQueryRequest extends $pb.GeneratedMessage {
|
|
|
void clearUserId() => clearField(2);
|
|
|
}
|
|
|
|
|
|
+class ToUserInActionBasicQueryV2Request extends $pb.GeneratedMessage {
|
|
|
+ factory ToUserInActionBasicQueryV2Request({
|
|
|
+ $core.int? actId,
|
|
|
+ $core.Iterable<$core.int>? userIdList,
|
|
|
+ }) {
|
|
|
+ final $result = create();
|
|
|
+ if (actId != null) {
|
|
|
+ $result.actId = actId;
|
|
|
+ }
|
|
|
+ if (userIdList != null) {
|
|
|
+ $result.userIdList.addAll(userIdList);
|
|
|
+ }
|
|
|
+ return $result;
|
|
|
+ }
|
|
|
+ ToUserInActionBasicQueryV2Request._() : super();
|
|
|
+ factory ToUserInActionBasicQueryV2Request.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
|
+ factory ToUserInActionBasicQueryV2Request.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
+
|
|
|
+ static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToUserInActionBasicQueryV2Request', package: const $pb.PackageName(_omitMessageNames ? '' : 'base.v1'), createEmptyInstance: create)
|
|
|
+ ..a<$core.int>(1, _omitFieldNames ? '' : 'ActId', $pb.PbFieldType.O3, protoName: 'ActId')
|
|
|
+ ..p<$core.int>(2, _omitFieldNames ? '' : 'UserIdList', $pb.PbFieldType.K3, protoName: 'UserIdList')
|
|
|
+ ..hasRequiredFields = false
|
|
|
+ ;
|
|
|
+
|
|
|
+ @$core.Deprecated(
|
|
|
+ 'Using this can add significant overhead to your binary. '
|
|
|
+ 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
|
+ 'Will be removed in next major version')
|
|
|
+ ToUserInActionBasicQueryV2Request clone() => ToUserInActionBasicQueryV2Request()..mergeFromMessage(this);
|
|
|
+ @$core.Deprecated(
|
|
|
+ 'Using this can add significant overhead to your binary. '
|
|
|
+ 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
|
+ 'Will be removed in next major version')
|
|
|
+ ToUserInActionBasicQueryV2Request copyWith(void Function(ToUserInActionBasicQueryV2Request) updates) => super.copyWith((message) => updates(message as ToUserInActionBasicQueryV2Request)) as ToUserInActionBasicQueryV2Request;
|
|
|
+
|
|
|
+ $pb.BuilderInfo get info_ => _i;
|
|
|
+
|
|
|
+ @$core.pragma('dart2js:noInline')
|
|
|
+ static ToUserInActionBasicQueryV2Request create() => ToUserInActionBasicQueryV2Request._();
|
|
|
+ ToUserInActionBasicQueryV2Request createEmptyInstance() => create();
|
|
|
+ static $pb.PbList<ToUserInActionBasicQueryV2Request> createRepeated() => $pb.PbList<ToUserInActionBasicQueryV2Request>();
|
|
|
+ @$core.pragma('dart2js:noInline')
|
|
|
+ static ToUserInActionBasicQueryV2Request getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToUserInActionBasicQueryV2Request>(create);
|
|
|
+ static ToUserInActionBasicQueryV2Request? _defaultInstance;
|
|
|
+
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ $core.int get actId => $_getIZ(0);
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ set actId($core.int v) { $_setSignedInt32(0, v); }
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ $core.bool hasActId() => $_has(0);
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ void clearActId() => clearField(1);
|
|
|
+
|
|
|
+ @$pb.TagNumber(2)
|
|
|
+ $core.List<$core.int> get userIdList => $_getList(1);
|
|
|
+}
|
|
|
+
|
|
|
class ToGetBinaryByMd5Request extends $pb.GeneratedMessage {
|
|
|
factory ToGetBinaryByMd5Request({
|
|
|
$core.List<$core.int>? md5,
|