24 lines
774 B
Dart
24 lines
774 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'discount_remove_response.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
DiscountRemoveResponseDTO _$DiscountRemoveResponseDTOFromJson(
|
|
Map<String, dynamic> json,
|
|
) => DiscountRemoveResponseDTO(
|
|
receipt: PriceInformation.fromJson(json['receipt'] as Map<String, dynamic>),
|
|
succeeded: json['succeeded'] as bool,
|
|
message: json['message'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$DiscountRemoveResponseDTOToJson(
|
|
DiscountRemoveResponseDTO instance,
|
|
) => <String, dynamic>{
|
|
'succeeded': instance.succeeded,
|
|
'message': instance.message,
|
|
'receipt': instance.receipt,
|
|
};
|