/// Pro-Lieferung gesetzter Wert eines Service. Je nach Service-Typ ist genau /// einer der beiden Slots gefüllt. class DeliveryServiceValue { const DeliveryServiceValue({ required this.deliveryId, required this.serviceId, this.boolValue, this.numericValue, }); final String deliveryId; final String serviceId; final bool? boolValue; final int? numericValue; }