Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
req_create_routing_entity.dart
Go to the documentation of this file.
2 final int id;
4
6 required this.id,
7 required this.reference,
8 });
9}
10
11class DriverEntity {
12 final int id;
13
14 DriverEntity({required this.id});
15}
16
18 final int duration;
23 final List<PurchaseOrderEntity> purchaseOrders;
24 final List<DriverEntity> drivers;
25
27 required this.duration,
28 required this.startLocationLatitude,
29 required this.startLocationLongitude,
30 required this.endLocationLatitude,
31 required this.endLocationLongitude,
32 required this.purchaseOrders,
33 required this.drivers,
34 });
35}
PurchaseOrderEntity({ required this.id, required this.reference, })
final List< PurchaseOrderEntity > purchaseOrders
ReqCreateRoutingEntity({ required this.duration, required this.startLocationLatitude, required this.startLocationLongitude, required this.endLocationLatitude, required this.endLocationLongitude, required this.purchaseOrders, required this.drivers, })
final List< DriverEntity > drivers
class Partner String
DriverEntity({required this.id})