22 lines
695 B
Dart
22 lines
695 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'payment.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
PaymentMethodDTO _$PaymentMethodDTOFromJson(Map<String, dynamic> json) =>
|
|
PaymentMethodDTO(
|
|
json['id'] as String,
|
|
description: json['description'] as String,
|
|
shortCode: json['shortCode'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$PaymentMethodDTOToJson(PaymentMethodDTO instance) =>
|
|
<String, dynamic>{
|
|
'id': instance.id,
|
|
'description': instance.description,
|
|
'shortCode': instance.shortCode,
|
|
};
|