|
@@ -1,105 +0,0 @@
|
|
|
-///
|
|
|
-// Generated code. Do not modify.
|
|
|
-// source: app_delete.proto
|
|
|
-//
|
|
|
-// @dart = 2.12
|
|
|
-// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
|
|
|
-
|
|
|
-import 'dart:core' as $core;
|
|
|
-
|
|
|
-import 'package:protobuf/protobuf.dart' as $pb;
|
|
|
-
|
|
|
-class DeleteAppRequest extends $pb.GeneratedMessage {
|
|
|
- static final $pb.BuilderInfo _i = $pb.BuilderInfo(const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'DeleteAppRequest', createEmptyInstance: create)
|
|
|
- ..aOS(1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'appId')
|
|
|
- ..hasRequiredFields = false
|
|
|
- ;
|
|
|
-
|
|
|
- DeleteAppRequest._() : super();
|
|
|
- factory DeleteAppRequest({
|
|
|
- $core.String? appId,
|
|
|
- }) {
|
|
|
- final _result = create();
|
|
|
- if (appId != null) {
|
|
|
- _result.appId = appId;
|
|
|
- }
|
|
|
- return _result;
|
|
|
- }
|
|
|
- factory DeleteAppRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
|
- factory DeleteAppRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
- @$core.Deprecated(
|
|
|
- 'Using this can add significant overhead to your binary. '
|
|
|
- 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
|
- 'Will be removed in next major version')
|
|
|
- DeleteAppRequest clone() => DeleteAppRequest()..mergeFromMessage(this);
|
|
|
- @$core.Deprecated(
|
|
|
- 'Using this can add significant overhead to your binary. '
|
|
|
- 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
|
- 'Will be removed in next major version')
|
|
|
- DeleteAppRequest copyWith(void Function(DeleteAppRequest) updates) => super.copyWith((message) => updates(message as DeleteAppRequest)) as DeleteAppRequest; // ignore: deprecated_member_use
|
|
|
- $pb.BuilderInfo get info_ => _i;
|
|
|
- @$core.pragma('dart2js:noInline')
|
|
|
- static DeleteAppRequest create() => DeleteAppRequest._();
|
|
|
- DeleteAppRequest createEmptyInstance() => create();
|
|
|
- static $pb.PbList<DeleteAppRequest> createRepeated() => $pb.PbList<DeleteAppRequest>();
|
|
|
- @$core.pragma('dart2js:noInline')
|
|
|
- static DeleteAppRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAppRequest>(create);
|
|
|
- static DeleteAppRequest? _defaultInstance;
|
|
|
-
|
|
|
- @$pb.TagNumber(1)
|
|
|
- $core.String get appId => $_getSZ(0);
|
|
|
- @$pb.TagNumber(1)
|
|
|
- set appId($core.String v) { $_setString(0, v); }
|
|
|
- @$pb.TagNumber(1)
|
|
|
- $core.bool hasAppId() => $_has(0);
|
|
|
- @$pb.TagNumber(1)
|
|
|
- void clearAppId() => clearField(1);
|
|
|
-}
|
|
|
-
|
|
|
-class DeleteAppParams extends $pb.GeneratedMessage {
|
|
|
- static final $pb.BuilderInfo _i = $pb.BuilderInfo(const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'DeleteAppParams', createEmptyInstance: create)
|
|
|
- ..aOS(1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'appId')
|
|
|
- ..hasRequiredFields = false
|
|
|
- ;
|
|
|
-
|
|
|
- DeleteAppParams._() : super();
|
|
|
- factory DeleteAppParams({
|
|
|
- $core.String? appId,
|
|
|
- }) {
|
|
|
- final _result = create();
|
|
|
- if (appId != null) {
|
|
|
- _result.appId = appId;
|
|
|
- }
|
|
|
- return _result;
|
|
|
- }
|
|
|
- factory DeleteAppParams.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
|
- factory DeleteAppParams.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
- @$core.Deprecated(
|
|
|
- 'Using this can add significant overhead to your binary. '
|
|
|
- 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
|
- 'Will be removed in next major version')
|
|
|
- DeleteAppParams clone() => DeleteAppParams()..mergeFromMessage(this);
|
|
|
- @$core.Deprecated(
|
|
|
- 'Using this can add significant overhead to your binary. '
|
|
|
- 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
|
- 'Will be removed in next major version')
|
|
|
- DeleteAppParams copyWith(void Function(DeleteAppParams) updates) => super.copyWith((message) => updates(message as DeleteAppParams)) as DeleteAppParams; // ignore: deprecated_member_use
|
|
|
- $pb.BuilderInfo get info_ => _i;
|
|
|
- @$core.pragma('dart2js:noInline')
|
|
|
- static DeleteAppParams create() => DeleteAppParams._();
|
|
|
- DeleteAppParams createEmptyInstance() => create();
|
|
|
- static $pb.PbList<DeleteAppParams> createRepeated() => $pb.PbList<DeleteAppParams>();
|
|
|
- @$core.pragma('dart2js:noInline')
|
|
|
- static DeleteAppParams getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAppParams>(create);
|
|
|
- static DeleteAppParams? _defaultInstance;
|
|
|
-
|
|
|
- @$pb.TagNumber(1)
|
|
|
- $core.String get appId => $_getSZ(0);
|
|
|
- @$pb.TagNumber(1)
|
|
|
- set appId($core.String v) { $_setString(0, v); }
|
|
|
- @$pb.TagNumber(1)
|
|
|
- $core.bool hasAppId() => $_has(0);
|
|
|
- @$pb.TagNumber(1)
|
|
|
- void clearAppId() => clearField(1);
|
|
|
-}
|
|
|
-
|