// GENERATED CODE - DO NOT MODIFY BY HAND part of 'refund_reason.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** RefundReason _$RefundReasonFromJson(Map 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 _$RefundReasonToJson(RefundReason instance) => { '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, };