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.
 
 
 
 
 
 

31 lines
1.1 KiB

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'refund_reason.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
RefundReason _$RefundReasonFromJson(Map<String, dynamic> json) => RefundReason()
..id = json['id'] as String?
..createTime = json['createTime'] as String?
..createUser = json['createUser'] as String?
..updateTime = json['updateTime'] as String?
..updateUser = json['updateUser'] as String?
..storeId = json['storeId'] as String?
..type = (json['type'] as num?)?.toInt()
..reason = json['reason'] as String?
..isDelete = (json['isDelete'] as num?)?.toInt();
Map<String, dynamic> _$RefundReasonToJson(RefundReason instance) =>
<String, dynamic>{
'id': instance.id,
'createTime': instance.createTime,
'createUser': instance.createUser,
'updateTime': instance.updateTime,
'updateUser': instance.updateUser,
'storeId': instance.storeId,
'type': instance.type,
'reason': instance.reason,
'isDelete': instance.isDelete,
};