You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
951 B
27 lines
951 B
1 month ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'wx_pay.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
WxPay _$WxPayFromJson(Map<String, dynamic> json) => WxPay()
|
||
|
..appId = json['appId'] as String?
|
||
|
..nonceStr = json['nonceStr'] as String?
|
||
|
..packageValue = json['packageValue'] as String?
|
||
|
..partnerId = json['partnerId'] as String?
|
||
|
..prepayId = json['prepayId'] as String?
|
||
|
..sign = json['sign'] as String?
|
||
|
..timeStamp = json['timeStamp'] as String?;
|
||
|
|
||
|
Map<String, dynamic> _$WxPayToJson(WxPay instance) => <String, dynamic>{
|
||
|
'appId': instance.appId,
|
||
|
'nonceStr': instance.nonceStr,
|
||
|
'packageValue': instance.packageValue,
|
||
|
'partnerId': instance.partnerId,
|
||
|
'prepayId': instance.prepayId,
|
||
|
'sign': instance.sign,
|
||
|
'timeStamp': instance.timeStamp,
|
||
|
};
|