import 'package:json_annotation/json_annotation.dart'; part 'discount_remove.g.dart'; @JsonSerializable(fieldRename: FieldRename.snake) class DiscountRemoveDTO { DiscountRemoveDTO( {required this.deliveryId}); String deliveryId; factory DiscountRemoveDTO.fromJson(Map json) => _$DiscountRemoveDTOFromJson(json); Map toJson() => _$DiscountRemoveDTOToJson(this); }