644 lines
		
	
	
		
			24 KiB
		
	
	
	
		
			Dart
		
	
	
	
			
		
		
	
	
			644 lines
		
	
	
		
			24 KiB
		
	
	
	
		
			Dart
		
	
	
	
| // This is a generated file - do not edit.
 | |
| //
 | |
| // Generated from alipay.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 AlipayTradeWapPayRequest extends $pb.GeneratedMessage {
 | |
|   factory AlipayTradeWapPayRequest({
 | |
|     $core.String? userIdentification,
 | |
|     $fixnum.Int64? amount,
 | |
|     $core.String? description,
 | |
|     $core.String? notifyUrl,
 | |
|     $core.String? quitUrl,
 | |
|   }) {
 | |
|     final result = create();
 | |
|     if (userIdentification != null)
 | |
|       result.userIdentification = userIdentification;
 | |
|     if (amount != null) result.amount = amount;
 | |
|     if (description != null) result.description = description;
 | |
|     if (notifyUrl != null) result.notifyUrl = notifyUrl;
 | |
|     if (quitUrl != null) result.quitUrl = quitUrl;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   AlipayTradeWapPayRequest._();
 | |
| 
 | |
|   factory AlipayTradeWapPayRequest.fromBuffer($core.List<$core.int> data,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromBuffer(data, registry);
 | |
|   factory AlipayTradeWapPayRequest.fromJson($core.String json,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromJson(json, registry);
 | |
| 
 | |
|   static final $pb.BuilderInfo _i = $pb.BuilderInfo(
 | |
|       _omitMessageNames ? '' : 'AlipayTradeWapPayRequest',
 | |
|       package: const $pb.PackageName(_omitMessageNames ? '' : 'wallet'),
 | |
|       createEmptyInstance: create)
 | |
|     ..aOS(1, _omitFieldNames ? '' : 'userIdentification')
 | |
|     ..aInt64(2, _omitFieldNames ? '' : 'amount')
 | |
|     ..aOS(3, _omitFieldNames ? '' : 'description')
 | |
|     ..aOS(4, _omitFieldNames ? '' : 'notifyUrl')
 | |
|     ..aOS(5, _omitFieldNames ? '' : 'quitUrl')
 | |
|     ..hasRequiredFields = false;
 | |
| 
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayTradeWapPayRequest clone() =>
 | |
|       AlipayTradeWapPayRequest()..mergeFromMessage(this);
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayTradeWapPayRequest copyWith(
 | |
|           void Function(AlipayTradeWapPayRequest) updates) =>
 | |
|       super.copyWith((message) => updates(message as AlipayTradeWapPayRequest))
 | |
|           as AlipayTradeWapPayRequest;
 | |
| 
 | |
|   @$core.override
 | |
|   $pb.BuilderInfo get info_ => _i;
 | |
| 
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayTradeWapPayRequest create() => AlipayTradeWapPayRequest._();
 | |
|   @$core.override
 | |
|   AlipayTradeWapPayRequest createEmptyInstance() => create();
 | |
|   static $pb.PbList<AlipayTradeWapPayRequest> createRepeated() =>
 | |
|       $pb.PbList<AlipayTradeWapPayRequest>();
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayTradeWapPayRequest getDefault() => _defaultInstance ??=
 | |
|       $pb.GeneratedMessage.$_defaultFor<AlipayTradeWapPayRequest>(create);
 | |
|   static AlipayTradeWapPayRequest? _defaultInstance;
 | |
| 
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.String get userIdentification => $_getSZ(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   set userIdentification($core.String value) => $_setString(0, value);
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.bool hasUserIdentification() => $_has(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   void clearUserIdentification() => $_clearField(1);
 | |
| 
 | |
|   @$pb.TagNumber(2)
 | |
|   $fixnum.Int64 get amount => $_getI64(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   set amount($fixnum.Int64 value) => $_setInt64(1, value);
 | |
|   @$pb.TagNumber(2)
 | |
|   $core.bool hasAmount() => $_has(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   void clearAmount() => $_clearField(2);
 | |
| 
 | |
|   @$pb.TagNumber(3)
 | |
|   $core.String get description => $_getSZ(2);
 | |
|   @$pb.TagNumber(3)
 | |
|   set description($core.String value) => $_setString(2, value);
 | |
|   @$pb.TagNumber(3)
 | |
|   $core.bool hasDescription() => $_has(2);
 | |
|   @$pb.TagNumber(3)
 | |
|   void clearDescription() => $_clearField(3);
 | |
| 
 | |
|   @$pb.TagNumber(4)
 | |
|   $core.String get notifyUrl => $_getSZ(3);
 | |
|   @$pb.TagNumber(4)
 | |
|   set notifyUrl($core.String value) => $_setString(3, value);
 | |
|   @$pb.TagNumber(4)
 | |
|   $core.bool hasNotifyUrl() => $_has(3);
 | |
|   @$pb.TagNumber(4)
 | |
|   void clearNotifyUrl() => $_clearField(4);
 | |
| 
 | |
|   @$pb.TagNumber(5)
 | |
|   $core.String get quitUrl => $_getSZ(4);
 | |
|   @$pb.TagNumber(5)
 | |
|   set quitUrl($core.String value) => $_setString(4, value);
 | |
|   @$pb.TagNumber(5)
 | |
|   $core.bool hasQuitUrl() => $_has(4);
 | |
|   @$pb.TagNumber(5)
 | |
|   void clearQuitUrl() => $_clearField(5);
 | |
| }
 | |
| 
 | |
| class AlipayTradeWapPayReply extends $pb.GeneratedMessage {
 | |
|   factory AlipayTradeWapPayReply({
 | |
|     $core.String? payUrl,
 | |
|   }) {
 | |
|     final result = create();
 | |
|     if (payUrl != null) result.payUrl = payUrl;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   AlipayTradeWapPayReply._();
 | |
| 
 | |
|   factory AlipayTradeWapPayReply.fromBuffer($core.List<$core.int> data,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromBuffer(data, registry);
 | |
|   factory AlipayTradeWapPayReply.fromJson($core.String json,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromJson(json, registry);
 | |
| 
 | |
|   static final $pb.BuilderInfo _i = $pb.BuilderInfo(
 | |
|       _omitMessageNames ? '' : 'AlipayTradeWapPayReply',
 | |
|       package: const $pb.PackageName(_omitMessageNames ? '' : 'wallet'),
 | |
|       createEmptyInstance: create)
 | |
|     ..aOS(1, _omitFieldNames ? '' : 'payUrl')
 | |
|     ..hasRequiredFields = false;
 | |
| 
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayTradeWapPayReply clone() =>
 | |
|       AlipayTradeWapPayReply()..mergeFromMessage(this);
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayTradeWapPayReply copyWith(
 | |
|           void Function(AlipayTradeWapPayReply) updates) =>
 | |
|       super.copyWith((message) => updates(message as AlipayTradeWapPayReply))
 | |
|           as AlipayTradeWapPayReply;
 | |
| 
 | |
|   @$core.override
 | |
|   $pb.BuilderInfo get info_ => _i;
 | |
| 
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayTradeWapPayReply create() => AlipayTradeWapPayReply._();
 | |
|   @$core.override
 | |
|   AlipayTradeWapPayReply createEmptyInstance() => create();
 | |
|   static $pb.PbList<AlipayTradeWapPayReply> createRepeated() =>
 | |
|       $pb.PbList<AlipayTradeWapPayReply>();
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayTradeWapPayReply getDefault() => _defaultInstance ??=
 | |
|       $pb.GeneratedMessage.$_defaultFor<AlipayTradeWapPayReply>(create);
 | |
|   static AlipayTradeWapPayReply? _defaultInstance;
 | |
| 
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.String get payUrl => $_getSZ(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   set payUrl($core.String value) => $_setString(0, value);
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.bool hasPayUrl() => $_has(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   void clearPayUrl() => $_clearField(1);
 | |
| }
 | |
| 
 | |
| class AlipayTradePagePayRequest extends $pb.GeneratedMessage {
 | |
|   factory AlipayTradePagePayRequest({
 | |
|     $core.String? userIdentification,
 | |
|     $fixnum.Int64? amount,
 | |
|     $core.String? description,
 | |
|     $core.String? notifyUrl,
 | |
|     $core.String? returnUrl,
 | |
|   }) {
 | |
|     final result = create();
 | |
|     if (userIdentification != null)
 | |
|       result.userIdentification = userIdentification;
 | |
|     if (amount != null) result.amount = amount;
 | |
|     if (description != null) result.description = description;
 | |
|     if (notifyUrl != null) result.notifyUrl = notifyUrl;
 | |
|     if (returnUrl != null) result.returnUrl = returnUrl;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   AlipayTradePagePayRequest._();
 | |
| 
 | |
|   factory AlipayTradePagePayRequest.fromBuffer($core.List<$core.int> data,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromBuffer(data, registry);
 | |
|   factory AlipayTradePagePayRequest.fromJson($core.String json,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromJson(json, registry);
 | |
| 
 | |
|   static final $pb.BuilderInfo _i = $pb.BuilderInfo(
 | |
|       _omitMessageNames ? '' : 'AlipayTradePagePayRequest',
 | |
|       package: const $pb.PackageName(_omitMessageNames ? '' : 'wallet'),
 | |
|       createEmptyInstance: create)
 | |
|     ..aOS(1, _omitFieldNames ? '' : 'userIdentification')
 | |
|     ..aInt64(2, _omitFieldNames ? '' : 'amount')
 | |
|     ..aOS(3, _omitFieldNames ? '' : 'description')
 | |
|     ..aOS(4, _omitFieldNames ? '' : 'notifyUrl')
 | |
|     ..aOS(5, _omitFieldNames ? '' : 'returnUrl')
 | |
|     ..hasRequiredFields = false;
 | |
| 
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayTradePagePayRequest clone() =>
 | |
|       AlipayTradePagePayRequest()..mergeFromMessage(this);
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayTradePagePayRequest copyWith(
 | |
|           void Function(AlipayTradePagePayRequest) updates) =>
 | |
|       super.copyWith((message) => updates(message as AlipayTradePagePayRequest))
 | |
|           as AlipayTradePagePayRequest;
 | |
| 
 | |
|   @$core.override
 | |
|   $pb.BuilderInfo get info_ => _i;
 | |
| 
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayTradePagePayRequest create() => AlipayTradePagePayRequest._();
 | |
|   @$core.override
 | |
|   AlipayTradePagePayRequest createEmptyInstance() => create();
 | |
|   static $pb.PbList<AlipayTradePagePayRequest> createRepeated() =>
 | |
|       $pb.PbList<AlipayTradePagePayRequest>();
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayTradePagePayRequest getDefault() => _defaultInstance ??=
 | |
|       $pb.GeneratedMessage.$_defaultFor<AlipayTradePagePayRequest>(create);
 | |
|   static AlipayTradePagePayRequest? _defaultInstance;
 | |
| 
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.String get userIdentification => $_getSZ(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   set userIdentification($core.String value) => $_setString(0, value);
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.bool hasUserIdentification() => $_has(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   void clearUserIdentification() => $_clearField(1);
 | |
| 
 | |
|   @$pb.TagNumber(2)
 | |
|   $fixnum.Int64 get amount => $_getI64(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   set amount($fixnum.Int64 value) => $_setInt64(1, value);
 | |
|   @$pb.TagNumber(2)
 | |
|   $core.bool hasAmount() => $_has(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   void clearAmount() => $_clearField(2);
 | |
| 
 | |
|   @$pb.TagNumber(3)
 | |
|   $core.String get description => $_getSZ(2);
 | |
|   @$pb.TagNumber(3)
 | |
|   set description($core.String value) => $_setString(2, value);
 | |
|   @$pb.TagNumber(3)
 | |
|   $core.bool hasDescription() => $_has(2);
 | |
|   @$pb.TagNumber(3)
 | |
|   void clearDescription() => $_clearField(3);
 | |
| 
 | |
|   @$pb.TagNumber(4)
 | |
|   $core.String get notifyUrl => $_getSZ(3);
 | |
|   @$pb.TagNumber(4)
 | |
|   set notifyUrl($core.String value) => $_setString(3, value);
 | |
|   @$pb.TagNumber(4)
 | |
|   $core.bool hasNotifyUrl() => $_has(3);
 | |
|   @$pb.TagNumber(4)
 | |
|   void clearNotifyUrl() => $_clearField(4);
 | |
| 
 | |
|   @$pb.TagNumber(5)
 | |
|   $core.String get returnUrl => $_getSZ(4);
 | |
|   @$pb.TagNumber(5)
 | |
|   set returnUrl($core.String value) => $_setString(4, value);
 | |
|   @$pb.TagNumber(5)
 | |
|   $core.bool hasReturnUrl() => $_has(4);
 | |
|   @$pb.TagNumber(5)
 | |
|   void clearReturnUrl() => $_clearField(5);
 | |
| }
 | |
| 
 | |
| class AlipayTradePagePayReply extends $pb.GeneratedMessage {
 | |
|   factory AlipayTradePagePayReply({
 | |
|     $core.String? payUrl,
 | |
|   }) {
 | |
|     final result = create();
 | |
|     if (payUrl != null) result.payUrl = payUrl;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   AlipayTradePagePayReply._();
 | |
| 
 | |
|   factory AlipayTradePagePayReply.fromBuffer($core.List<$core.int> data,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromBuffer(data, registry);
 | |
|   factory AlipayTradePagePayReply.fromJson($core.String json,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromJson(json, registry);
 | |
| 
 | |
|   static final $pb.BuilderInfo _i = $pb.BuilderInfo(
 | |
|       _omitMessageNames ? '' : 'AlipayTradePagePayReply',
 | |
|       package: const $pb.PackageName(_omitMessageNames ? '' : 'wallet'),
 | |
|       createEmptyInstance: create)
 | |
|     ..aOS(1, _omitFieldNames ? '' : 'payUrl')
 | |
|     ..hasRequiredFields = false;
 | |
| 
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayTradePagePayReply clone() =>
 | |
|       AlipayTradePagePayReply()..mergeFromMessage(this);
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayTradePagePayReply copyWith(
 | |
|           void Function(AlipayTradePagePayReply) updates) =>
 | |
|       super.copyWith((message) => updates(message as AlipayTradePagePayReply))
 | |
|           as AlipayTradePagePayReply;
 | |
| 
 | |
|   @$core.override
 | |
|   $pb.BuilderInfo get info_ => _i;
 | |
| 
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayTradePagePayReply create() => AlipayTradePagePayReply._();
 | |
|   @$core.override
 | |
|   AlipayTradePagePayReply createEmptyInstance() => create();
 | |
|   static $pb.PbList<AlipayTradePagePayReply> createRepeated() =>
 | |
|       $pb.PbList<AlipayTradePagePayReply>();
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayTradePagePayReply getDefault() => _defaultInstance ??=
 | |
|       $pb.GeneratedMessage.$_defaultFor<AlipayTradePagePayReply>(create);
 | |
|   static AlipayTradePagePayReply? _defaultInstance;
 | |
| 
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.String get payUrl => $_getSZ(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   set payUrl($core.String value) => $_setString(0, value);
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.bool hasPayUrl() => $_has(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   void clearPayUrl() => $_clearField(1);
 | |
| }
 | |
| 
 | |
| class AlipayTradeAppPayRequest extends $pb.GeneratedMessage {
 | |
|   factory AlipayTradeAppPayRequest({
 | |
|     $core.String? userIdentification,
 | |
|     $fixnum.Int64? amount,
 | |
|     $core.String? description,
 | |
|     $core.String? notifyUrl,
 | |
|   }) {
 | |
|     final result = create();
 | |
|     if (userIdentification != null)
 | |
|       result.userIdentification = userIdentification;
 | |
|     if (amount != null) result.amount = amount;
 | |
|     if (description != null) result.description = description;
 | |
|     if (notifyUrl != null) result.notifyUrl = notifyUrl;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   AlipayTradeAppPayRequest._();
 | |
| 
 | |
|   factory AlipayTradeAppPayRequest.fromBuffer($core.List<$core.int> data,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromBuffer(data, registry);
 | |
|   factory AlipayTradeAppPayRequest.fromJson($core.String json,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromJson(json, registry);
 | |
| 
 | |
|   static final $pb.BuilderInfo _i = $pb.BuilderInfo(
 | |
|       _omitMessageNames ? '' : 'AlipayTradeAppPayRequest',
 | |
|       package: const $pb.PackageName(_omitMessageNames ? '' : 'wallet'),
 | |
|       createEmptyInstance: create)
 | |
|     ..aOS(1, _omitFieldNames ? '' : 'userIdentification')
 | |
|     ..aInt64(2, _omitFieldNames ? '' : 'amount')
 | |
|     ..aOS(3, _omitFieldNames ? '' : 'description')
 | |
|     ..aOS(4, _omitFieldNames ? '' : 'notifyUrl')
 | |
|     ..hasRequiredFields = false;
 | |
| 
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayTradeAppPayRequest clone() =>
 | |
|       AlipayTradeAppPayRequest()..mergeFromMessage(this);
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayTradeAppPayRequest copyWith(
 | |
|           void Function(AlipayTradeAppPayRequest) updates) =>
 | |
|       super.copyWith((message) => updates(message as AlipayTradeAppPayRequest))
 | |
|           as AlipayTradeAppPayRequest;
 | |
| 
 | |
|   @$core.override
 | |
|   $pb.BuilderInfo get info_ => _i;
 | |
| 
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayTradeAppPayRequest create() => AlipayTradeAppPayRequest._();
 | |
|   @$core.override
 | |
|   AlipayTradeAppPayRequest createEmptyInstance() => create();
 | |
|   static $pb.PbList<AlipayTradeAppPayRequest> createRepeated() =>
 | |
|       $pb.PbList<AlipayTradeAppPayRequest>();
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayTradeAppPayRequest getDefault() => _defaultInstance ??=
 | |
|       $pb.GeneratedMessage.$_defaultFor<AlipayTradeAppPayRequest>(create);
 | |
|   static AlipayTradeAppPayRequest? _defaultInstance;
 | |
| 
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.String get userIdentification => $_getSZ(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   set userIdentification($core.String value) => $_setString(0, value);
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.bool hasUserIdentification() => $_has(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   void clearUserIdentification() => $_clearField(1);
 | |
| 
 | |
|   @$pb.TagNumber(2)
 | |
|   $fixnum.Int64 get amount => $_getI64(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   set amount($fixnum.Int64 value) => $_setInt64(1, value);
 | |
|   @$pb.TagNumber(2)
 | |
|   $core.bool hasAmount() => $_has(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   void clearAmount() => $_clearField(2);
 | |
| 
 | |
|   @$pb.TagNumber(3)
 | |
|   $core.String get description => $_getSZ(2);
 | |
|   @$pb.TagNumber(3)
 | |
|   set description($core.String value) => $_setString(2, value);
 | |
|   @$pb.TagNumber(3)
 | |
|   $core.bool hasDescription() => $_has(2);
 | |
|   @$pb.TagNumber(3)
 | |
|   void clearDescription() => $_clearField(3);
 | |
| 
 | |
|   @$pb.TagNumber(4)
 | |
|   $core.String get notifyUrl => $_getSZ(3);
 | |
|   @$pb.TagNumber(4)
 | |
|   set notifyUrl($core.String value) => $_setString(3, value);
 | |
|   @$pb.TagNumber(4)
 | |
|   $core.bool hasNotifyUrl() => $_has(3);
 | |
|   @$pb.TagNumber(4)
 | |
|   void clearNotifyUrl() => $_clearField(4);
 | |
| }
 | |
| 
 | |
| class AlipayTradeAppPayReply extends $pb.GeneratedMessage {
 | |
|   factory AlipayTradeAppPayReply({
 | |
|     $core.String? payParam,
 | |
|   }) {
 | |
|     final result = create();
 | |
|     if (payParam != null) result.payParam = payParam;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   AlipayTradeAppPayReply._();
 | |
| 
 | |
|   factory AlipayTradeAppPayReply.fromBuffer($core.List<$core.int> data,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromBuffer(data, registry);
 | |
|   factory AlipayTradeAppPayReply.fromJson($core.String json,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromJson(json, registry);
 | |
| 
 | |
|   static final $pb.BuilderInfo _i = $pb.BuilderInfo(
 | |
|       _omitMessageNames ? '' : 'AlipayTradeAppPayReply',
 | |
|       package: const $pb.PackageName(_omitMessageNames ? '' : 'wallet'),
 | |
|       createEmptyInstance: create)
 | |
|     ..aOS(1, _omitFieldNames ? '' : 'payParam')
 | |
|     ..hasRequiredFields = false;
 | |
| 
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayTradeAppPayReply clone() =>
 | |
|       AlipayTradeAppPayReply()..mergeFromMessage(this);
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayTradeAppPayReply copyWith(
 | |
|           void Function(AlipayTradeAppPayReply) updates) =>
 | |
|       super.copyWith((message) => updates(message as AlipayTradeAppPayReply))
 | |
|           as AlipayTradeAppPayReply;
 | |
| 
 | |
|   @$core.override
 | |
|   $pb.BuilderInfo get info_ => _i;
 | |
| 
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayTradeAppPayReply create() => AlipayTradeAppPayReply._();
 | |
|   @$core.override
 | |
|   AlipayTradeAppPayReply createEmptyInstance() => create();
 | |
|   static $pb.PbList<AlipayTradeAppPayReply> createRepeated() =>
 | |
|       $pb.PbList<AlipayTradeAppPayReply>();
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayTradeAppPayReply getDefault() => _defaultInstance ??=
 | |
|       $pb.GeneratedMessage.$_defaultFor<AlipayTradeAppPayReply>(create);
 | |
|   static AlipayTradeAppPayReply? _defaultInstance;
 | |
| 
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.String get payParam => $_getSZ(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   set payParam($core.String value) => $_setString(0, value);
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.bool hasPayParam() => $_has(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   void clearPayParam() => $_clearField(1);
 | |
| }
 | |
| 
 | |
| class AlipayUniTransferRequest extends $pb.GeneratedMessage {
 | |
|   factory AlipayUniTransferRequest({
 | |
|     $core.String? userIdentification,
 | |
|     $fixnum.Int64? amount,
 | |
|     $fixnum.Int64? fee,
 | |
|     $core.String? description,
 | |
|   }) {
 | |
|     final result = create();
 | |
|     if (userIdentification != null)
 | |
|       result.userIdentification = userIdentification;
 | |
|     if (amount != null) result.amount = amount;
 | |
|     if (fee != null) result.fee = fee;
 | |
|     if (description != null) result.description = description;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   AlipayUniTransferRequest._();
 | |
| 
 | |
|   factory AlipayUniTransferRequest.fromBuffer($core.List<$core.int> data,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromBuffer(data, registry);
 | |
|   factory AlipayUniTransferRequest.fromJson($core.String json,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromJson(json, registry);
 | |
| 
 | |
|   static final $pb.BuilderInfo _i = $pb.BuilderInfo(
 | |
|       _omitMessageNames ? '' : 'AlipayUniTransferRequest',
 | |
|       package: const $pb.PackageName(_omitMessageNames ? '' : 'wallet'),
 | |
|       createEmptyInstance: create)
 | |
|     ..aOS(1, _omitFieldNames ? '' : 'userIdentification')
 | |
|     ..aInt64(2, _omitFieldNames ? '' : 'amount')
 | |
|     ..aInt64(3, _omitFieldNames ? '' : 'fee')
 | |
|     ..aOS(4, _omitFieldNames ? '' : 'description')
 | |
|     ..hasRequiredFields = false;
 | |
| 
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayUniTransferRequest clone() =>
 | |
|       AlipayUniTransferRequest()..mergeFromMessage(this);
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayUniTransferRequest copyWith(
 | |
|           void Function(AlipayUniTransferRequest) updates) =>
 | |
|       super.copyWith((message) => updates(message as AlipayUniTransferRequest))
 | |
|           as AlipayUniTransferRequest;
 | |
| 
 | |
|   @$core.override
 | |
|   $pb.BuilderInfo get info_ => _i;
 | |
| 
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayUniTransferRequest create() => AlipayUniTransferRequest._();
 | |
|   @$core.override
 | |
|   AlipayUniTransferRequest createEmptyInstance() => create();
 | |
|   static $pb.PbList<AlipayUniTransferRequest> createRepeated() =>
 | |
|       $pb.PbList<AlipayUniTransferRequest>();
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayUniTransferRequest getDefault() => _defaultInstance ??=
 | |
|       $pb.GeneratedMessage.$_defaultFor<AlipayUniTransferRequest>(create);
 | |
|   static AlipayUniTransferRequest? _defaultInstance;
 | |
| 
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.String get userIdentification => $_getSZ(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   set userIdentification($core.String value) => $_setString(0, value);
 | |
|   @$pb.TagNumber(1)
 | |
|   $core.bool hasUserIdentification() => $_has(0);
 | |
|   @$pb.TagNumber(1)
 | |
|   void clearUserIdentification() => $_clearField(1);
 | |
| 
 | |
|   @$pb.TagNumber(2)
 | |
|   $fixnum.Int64 get amount => $_getI64(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   set amount($fixnum.Int64 value) => $_setInt64(1, value);
 | |
|   @$pb.TagNumber(2)
 | |
|   $core.bool hasAmount() => $_has(1);
 | |
|   @$pb.TagNumber(2)
 | |
|   void clearAmount() => $_clearField(2);
 | |
| 
 | |
|   @$pb.TagNumber(3)
 | |
|   $fixnum.Int64 get fee => $_getI64(2);
 | |
|   @$pb.TagNumber(3)
 | |
|   set fee($fixnum.Int64 value) => $_setInt64(2, value);
 | |
|   @$pb.TagNumber(3)
 | |
|   $core.bool hasFee() => $_has(2);
 | |
|   @$pb.TagNumber(3)
 | |
|   void clearFee() => $_clearField(3);
 | |
| 
 | |
|   @$pb.TagNumber(4)
 | |
|   $core.String get description => $_getSZ(3);
 | |
|   @$pb.TagNumber(4)
 | |
|   set description($core.String value) => $_setString(3, value);
 | |
|   @$pb.TagNumber(4)
 | |
|   $core.bool hasDescription() => $_has(3);
 | |
|   @$pb.TagNumber(4)
 | |
|   void clearDescription() => $_clearField(4);
 | |
| }
 | |
| 
 | |
| class AlipayUniTransferReply extends $pb.GeneratedMessage {
 | |
|   factory AlipayUniTransferReply() => create();
 | |
| 
 | |
|   AlipayUniTransferReply._();
 | |
| 
 | |
|   factory AlipayUniTransferReply.fromBuffer($core.List<$core.int> data,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromBuffer(data, registry);
 | |
|   factory AlipayUniTransferReply.fromJson($core.String json,
 | |
|           [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) =>
 | |
|       create()..mergeFromJson(json, registry);
 | |
| 
 | |
|   static final $pb.BuilderInfo _i = $pb.BuilderInfo(
 | |
|       _omitMessageNames ? '' : 'AlipayUniTransferReply',
 | |
|       package: const $pb.PackageName(_omitMessageNames ? '' : 'wallet'),
 | |
|       createEmptyInstance: create)
 | |
|     ..hasRequiredFields = false;
 | |
| 
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayUniTransferReply clone() =>
 | |
|       AlipayUniTransferReply()..mergeFromMessage(this);
 | |
|   @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
 | |
|   AlipayUniTransferReply copyWith(
 | |
|           void Function(AlipayUniTransferReply) updates) =>
 | |
|       super.copyWith((message) => updates(message as AlipayUniTransferReply))
 | |
|           as AlipayUniTransferReply;
 | |
| 
 | |
|   @$core.override
 | |
|   $pb.BuilderInfo get info_ => _i;
 | |
| 
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayUniTransferReply create() => AlipayUniTransferReply._();
 | |
|   @$core.override
 | |
|   AlipayUniTransferReply createEmptyInstance() => create();
 | |
|   static $pb.PbList<AlipayUniTransferReply> createRepeated() =>
 | |
|       $pb.PbList<AlipayUniTransferReply>();
 | |
|   @$core.pragma('dart2js:noInline')
 | |
|   static AlipayUniTransferReply getDefault() => _defaultInstance ??=
 | |
|       $pb.GeneratedMessage.$_defaultFor<AlipayUniTransferReply>(create);
 | |
|   static AlipayUniTransferReply? _defaultInstance;
 | |
| }
 | |
| 
 | |
| const $core.bool _omitFieldNames =
 | |
|     $core.bool.fromEnvironment('protobuf.omit_field_names');
 | |
| const $core.bool _omitMessageNames =
 | |
|     $core.bool.fromEnvironment('protobuf.omit_message_names');
 |