Initial draft
This commit is contained in:
23
lib/dto/discount_remove_response.g.dart
Normal file
23
lib/dto/discount_remove_response.g.dart
Normal file
@ -0,0 +1,23 @@
|
||||
// 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,
|
||||
};
|
||||
Reference in New Issue
Block a user