@@ -4,15 +4,15 @@ |
||
4 | 4 | |
5 | 5 | class AlgorithmType |
6 | 6 | { |
7 | - const STATE_NEW = 0; |
|
8 | - const TSP = 1; |
|
9 | - const VRP = 2; |
|
10 | - const CVRP_TW_SD = 3; |
|
11 | - const CVRP_TW_MD = 4; |
|
12 | - const TSP_TW = 5; |
|
13 | - const TSP_TW_CR = 6; |
|
14 | - const OPTIMIZATION_STATE_IN_QUEUE = 7; |
|
15 | - const ADVANCED_CVRP_TW = 9; |
|
16 | - const ALG_NONE = 100; |
|
17 | - const ALG_LEGACY_DISTRIBUTED = 101; |
|
7 | + const STATE_NEW = 0; |
|
8 | + const TSP = 1; |
|
9 | + const VRP = 2; |
|
10 | + const CVRP_TW_SD = 3; |
|
11 | + const CVRP_TW_MD = 4; |
|
12 | + const TSP_TW = 5; |
|
13 | + const TSP_TW_CR = 6; |
|
14 | + const OPTIMIZATION_STATE_IN_QUEUE = 7; |
|
15 | + const ADVANCED_CVRP_TW = 9; |
|
16 | + const ALG_NONE = 100; |
|
17 | + const ALG_LEGACY_DISTRIBUTED = 101; |
|
18 | 18 | } |
@@ -4,9 +4,9 @@ |
||
4 | 4 | |
5 | 5 | class Metric |
6 | 6 | { |
7 | - const EUCLIDEAN = 1; //measures point to point distance as a straight line |
|
8 | - const MANHATTAN = 2; //measures point to point distance as taxicab geometry line |
|
9 | - const GEODESIC = 3; //measures point to point distance approximating curvature of the earth |
|
10 | - const MATRIX = 4; //measures point to point distance by traversing the actual road network |
|
11 | - const EXACT_2D = 5; //measures point to point distance using 2d rectilinear distance |
|
7 | + const EUCLIDEAN = 1; //measures point to point distance as a straight line |
|
8 | + const MANHATTAN = 2; //measures point to point distance as taxicab geometry line |
|
9 | + const GEODESIC = 3; //measures point to point distance approximating curvature of the earth |
|
10 | + const MATRIX = 4; //measures point to point distance by traversing the actual road network |
|
11 | + const EXACT_2D = 5; //measures point to point distance using 2d rectilinear distance |
|
12 | 12 | } |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | class TerritoryTypes |
6 | 6 | { |
7 | - const CIRCLE = 'circle'; |
|
8 | - const POLY = 'poly'; |
|
9 | - const RECT = 'rect'; |
|
7 | + const CIRCLE = 'circle'; |
|
8 | + const POLY = 'poly'; |
|
9 | + const RECT = 'rect'; |
|
10 | 10 | } |
@@ -4,26 +4,26 @@ |
||
4 | 4 | |
5 | 5 | class StatusUpdateType |
6 | 6 | { |
7 | - const PICKUP = 'pickup'; |
|
8 | - const DROPOFF = 'dropoff'; |
|
9 | - const NOANSWER = 'noanswer'; |
|
10 | - const NOTFOUND = 'notfound'; |
|
11 | - const NOTPAID = 'notpaid'; |
|
12 | - const PAID = 'paid'; |
|
13 | - const WRONGDELIVERY = 'wrongdelivery'; |
|
14 | - const WRONGADDRESSRECIPIENT = 'wrongaddressrecipient'; |
|
15 | - const NOTPRESENT = 'notpresent'; |
|
16 | - const PARTS_MISSING = 'parts_missing'; |
|
17 | - const SERVICE_RENDERED = 'service_rendered'; |
|
18 | - const FOLLOW_UP = 'follow_up'; |
|
19 | - const LEFT_INFORMATION = 'left_information'; |
|
20 | - const SPOKE_WITH_DECISION_MAKER = 'spoke_with_decision_maker'; |
|
21 | - const SPOKE_WITH_DECISION_INFLUENCER = 'spoke_with_decision_influencer'; |
|
22 | - const SPOKE_WITH_DECISION_INFLUENCER = 'spoke_with_decision_influencer'; |
|
23 | - const COMPETITIVE_ACCOUNT = 'competitive_account'; |
|
24 | - const SCHEDULED_FOLLOW_UP_MEETING = 'scheduled_follow_up_meeting'; |
|
25 | - const SCHEDULED_LUNCH = 'scheduled_lunch'; |
|
26 | - const SCHEDULED_PRODUCT_DEMO = 'scheduled_product_demo'; |
|
27 | - const SCHEDULED_CLINICAL_DEMO = 'scheduled_clinical_demo'; |
|
28 | - const NO_OPPORTUNITY = 'no_opportunity'; |
|
7 | + const PICKUP = 'pickup'; |
|
8 | + const DROPOFF = 'dropoff'; |
|
9 | + const NOANSWER = 'noanswer'; |
|
10 | + const NOTFOUND = 'notfound'; |
|
11 | + const NOTPAID = 'notpaid'; |
|
12 | + const PAID = 'paid'; |
|
13 | + const WRONGDELIVERY = 'wrongdelivery'; |
|
14 | + const WRONGADDRESSRECIPIENT = 'wrongaddressrecipient'; |
|
15 | + const NOTPRESENT = 'notpresent'; |
|
16 | + const PARTS_MISSING = 'parts_missing'; |
|
17 | + const SERVICE_RENDERED = 'service_rendered'; |
|
18 | + const FOLLOW_UP = 'follow_up'; |
|
19 | + const LEFT_INFORMATION = 'left_information'; |
|
20 | + const SPOKE_WITH_DECISION_MAKER = 'spoke_with_decision_maker'; |
|
21 | + const SPOKE_WITH_DECISION_INFLUENCER = 'spoke_with_decision_influencer'; |
|
22 | + const SPOKE_WITH_DECISION_INFLUENCER = 'spoke_with_decision_influencer'; |
|
23 | + const COMPETITIVE_ACCOUNT = 'competitive_account'; |
|
24 | + const SCHEDULED_FOLLOW_UP_MEETING = 'scheduled_follow_up_meeting'; |
|
25 | + const SCHEDULED_LUNCH = 'scheduled_lunch'; |
|
26 | + const SCHEDULED_PRODUCT_DEMO = 'scheduled_product_demo'; |
|
27 | + const SCHEDULED_CLINICAL_DEMO = 'scheduled_clinical_demo'; |
|
28 | + const NO_OPPORTUNITY = 'no_opportunity'; |
|
29 | 29 | } |
@@ -4,9 +4,9 @@ |
||
4 | 4 | |
5 | 5 | class DeviceType |
6 | 6 | { |
7 | - const WEB = 'web'; |
|
8 | - const IPHONE = 'iphone'; |
|
9 | - const IPAD = 'ipad'; |
|
10 | - const ANDROID_PHONE = 'android_phone'; |
|
11 | - const ANDROID_TABLET = 'android_tablet'; |
|
7 | + const WEB = 'web'; |
|
8 | + const IPHONE = 'iphone'; |
|
9 | + const IPAD = 'ipad'; |
|
10 | + const ANDROID_PHONE = 'android_phone'; |
|
11 | + const ANDROID_TABLET = 'android_tablet'; |
|
12 | 12 | } |
@@ -4,9 +4,9 @@ |
||
4 | 4 | |
5 | 5 | class TravelMode |
6 | 6 | { |
7 | - const DRIVING = 'Driving'; |
|
8 | - const WALKING = 'Walking'; |
|
9 | - const TRUCKING = 'Trucking'; |
|
10 | - const CYCLING = 'Cycling'; |
|
11 | - const TRANSIT = 'Transit'; |
|
7 | + const DRIVING = 'Driving'; |
|
8 | + const WALKING = 'Walking'; |
|
9 | + const TRUCKING = 'Trucking'; |
|
10 | + const CYCLING = 'Cycling'; |
|
11 | + const TRANSIT = 'Transit'; |
|
12 | 12 | } |
@@ -4,35 +4,35 @@ |
||
4 | 4 | |
5 | 5 | class ActivityTypes |
6 | 6 | { |
7 | - const AREA_REMOVED = 'area-removed'; |
|
8 | - const AREA_ADDED = 'area-added'; |
|
9 | - const AREA_UPDATED = 'area-updated'; |
|
10 | - const DELETE_DESTINATION = 'delete-destination'; |
|
11 | - const INSERT_DESTINATION = 'insert-destination'; |
|
12 | - const DESTINATION_OUT_SEQUENCE = 'destination-out-sequence'; |
|
13 | - const DRIVER_ARRIVED_EARLY = 'driver-arrived-early'; |
|
14 | - const DRIVER_ARRIVED_LATE = 'driver-arrived-late'; |
|
15 | - const DRIVER_ARRIVED_ON_TIME = 'driver-arrived-on-time'; |
|
16 | - const GEOFENCE_LEFT = 'geofence-left'; |
|
17 | - const GEOFENCE_ENTERED = 'geofence-entered'; |
|
18 | - const MARK_DESTINATION_DEPARTED = 'mark-destination-departed'; |
|
19 | - const MARK_DESTINATION_VISITED = 'mark-destination-visited'; |
|
20 | - const MEMBER_CREATED = 'member-created'; |
|
21 | - const MEMBER_DELETED = 'member-deleted'; |
|
22 | - const MEMBER_MODIFIED = 'member-modified'; |
|
23 | - const MOVE_DESTINATION = 'move-destination'; |
|
24 | - const NOTE_INSERT = 'note-insert'; |
|
25 | - const ROUTE_DELETE = 'route-delete'; |
|
26 | - const ROUTE_OPTIMIZED = 'route-optimized'; |
|
27 | - const ROUTE_OWNER_CHANGED = 'route-owner-changed'; |
|
28 | - const ROUTE_DUPLICATE = 'route-duplicate'; |
|
29 | - const UPDATE_DESTINATIONS = 'update-destinations'; |
|
30 | - const USER_MESSAGE = 'user_message'; |
|
7 | + const AREA_REMOVED = 'area-removed'; |
|
8 | + const AREA_ADDED = 'area-added'; |
|
9 | + const AREA_UPDATED = 'area-updated'; |
|
10 | + const DELETE_DESTINATION = 'delete-destination'; |
|
11 | + const INSERT_DESTINATION = 'insert-destination'; |
|
12 | + const DESTINATION_OUT_SEQUENCE = 'destination-out-sequence'; |
|
13 | + const DRIVER_ARRIVED_EARLY = 'driver-arrived-early'; |
|
14 | + const DRIVER_ARRIVED_LATE = 'driver-arrived-late'; |
|
15 | + const DRIVER_ARRIVED_ON_TIME = 'driver-arrived-on-time'; |
|
16 | + const GEOFENCE_LEFT = 'geofence-left'; |
|
17 | + const GEOFENCE_ENTERED = 'geofence-entered'; |
|
18 | + const MARK_DESTINATION_DEPARTED = 'mark-destination-departed'; |
|
19 | + const MARK_DESTINATION_VISITED = 'mark-destination-visited'; |
|
20 | + const MEMBER_CREATED = 'member-created'; |
|
21 | + const MEMBER_DELETED = 'member-deleted'; |
|
22 | + const MEMBER_MODIFIED = 'member-modified'; |
|
23 | + const MOVE_DESTINATION = 'move-destination'; |
|
24 | + const NOTE_INSERT = 'note-insert'; |
|
25 | + const ROUTE_DELETE = 'route-delete'; |
|
26 | + const ROUTE_OPTIMIZED = 'route-optimized'; |
|
27 | + const ROUTE_OWNER_CHANGED = 'route-owner-changed'; |
|
28 | + const ROUTE_DUPLICATE = 'route-duplicate'; |
|
29 | + const UPDATE_DESTINATIONS = 'update-destinations'; |
|
30 | + const USER_MESSAGE = 'user_message'; |
|
31 | 31 | |
32 | - public static function getConstants() |
|
33 | - { |
|
34 | - $atc = new \ReflectionClass('Route4Me\\Enum\\ActivityTypes'); |
|
32 | + public static function getConstants() |
|
33 | + { |
|
34 | + $atc = new \ReflectionClass('Route4Me\\Enum\\ActivityTypes'); |
|
35 | 35 | |
36 | - return $atc->getConstants(); |
|
37 | - } |
|
36 | + return $atc->getConstants(); |
|
37 | + } |
|
38 | 38 | } |
@@ -4,74 +4,74 @@ |
||
4 | 4 | |
5 | 5 | class Endpoint |
6 | 6 | { |
7 | - const BASE_URL = 'https://api.route4me.com'; |
|
8 | - const WH_BASE_URL = 'https://wh.route4me.com/modules'; |
|
9 | - |
|
10 | - const AVOIDANCE_ZONE = '/api.v4/avoidance.php'; |
|
11 | - const TERRITORY_V4 = '/api.v4/territory.php'; |
|
12 | - |
|
13 | - const GET_ACTIVITIES = '/api/get_activities.php'; |
|
14 | - const ACTIVITY_FEED = '/api.v4/activity_feed.php'; |
|
15 | - |
|
16 | - const ADDRESS_V4 = '/api.v4/address.php'; |
|
17 | - const MOVE_ROUTE_DESTINATION = '/actions/route/move_route_destination.php'; |
|
18 | - const MARK_ADDRESS_DEPARTED = '/api/route/mark_address_departed.php'; |
|
19 | - const UPDATE_ADDRESS_VISITED = '/actions/address/update_address_visited.php'; |
|
20 | - |
|
21 | - const ADDRESS_BOOK_V4 = '/api.v4/address_book.php'; |
|
22 | - const ADDRESS_BOOK_GROUP = '/api.v4/address_book_group.php'; |
|
23 | - const ADDRESS_BOOK_SEARCH = '/api/address_book/get_search_group_addresses.php'; |
|
24 | - const MODIFY_CONTACT = '/api/address_book/modify_contact.php'; |
|
25 | - |
|
26 | - const GEOCODER = '/api/geocoder.php'; |
|
27 | - const JSON_GEOCODE = '/actions/upload/json-geocode.php'; |
|
28 | - const STREET_DATA = 'https://rapid.route4me.com/street_data/'; |
|
29 | - const STREET_DATA_ZIPCODE = 'https://rapid.route4me.com/street_data/zipcode/'; |
|
30 | - const STREET_DATA_SERVICE = 'https://rapid.route4me.com/street_data/service/'; |
|
31 | - |
|
32 | - const USER_V4 = '/api.v4/user.php'; |
|
33 | - const VERIFY_DEVICE_LICENSE = '/api/device/verify_device_license.php'; |
|
34 | - const USER_LICENSE = '/api/member/user_license.php'; |
|
35 | - const WEBINAR_REGISTER = '/actions/webinar_register.php'; |
|
36 | - const EXPIRE_SESSION = '/datafeed/session/expire_session.php'; |
|
37 | - const VALIDATE_SESSION = '/datafeed/session/validate_session.php'; |
|
38 | - const AUTHENTICATE = '/actions/authenticate.php'; |
|
39 | - const REGISTER_ACTION = '/actions/register_action.php'; |
|
40 | - const VIEW_USER_LOCATIONS = '/api/track/view_user_locations.php'; |
|
41 | - const CONFIGURATION_SETTINGS = '/api.v4/configuration-settings.php'; |
|
42 | - |
|
43 | - const OPTIMIZATION_PROBLEM = '/api.v4/optimization_problem.php'; |
|
44 | - const HYBRID_DATE_OPTIMIZATION = '/api.v4/hybrid_date_optimization.php'; |
|
45 | - const CHANGE_HYBRID_OPTIMIZATION_DEPOT = '/api/change_hybrid_optimization_depot.php'; |
|
46 | - |
|
47 | - const ORDER_V4 = '/api.v4/order.php'; |
|
48 | - const ORDER_CUSTOM_FIELDS_V4 = '/api.v4/order_custom_user_fields.php'; |
|
49 | - |
|
50 | - const ROUTE_V4 = '/api.v4/route.php'; |
|
51 | - const ROUTE_DUPLICATE = '/actions/duplicate_route.php'; |
|
52 | - const ROUTES_DELETE = '/actions/delete_routes.php'; |
|
53 | - const REOPTIMIZE_V3_2 = '/api.v3/route/reoptimize_2.php'; |
|
54 | - const ROUTES_MERGE = '/actions/merge_routes.php'; |
|
55 | - const ROUTE_SHARE = '/actions/route/share_route.php'; |
|
56 | - const ROUTE_NOTES_ADD = '/actions/addRouteNotes.php'; |
|
57 | - const STATUS_V4 = '/api.v4/status.php'; |
|
58 | - |
|
59 | - const GET_DEVICE_LOCATION = '/api/track/get_device_location.php'; |
|
60 | - const TRACK_SET = '/track/set.php'; |
|
61 | - const USER_LOCATION = '/api/track/view_user_locations.php'; |
|
62 | - |
|
63 | - const NOTE_CUSTOM_TYPES_V4 = '/api.v4/note_custom_types.php'; |
|
64 | - |
|
65 | - const ViewVehicles = '/api/vehicles/view_vehicles.php'; |
|
66 | - const VEHICLE_V4 = '/api/vehicles'; |
|
67 | - const VEHICLE_V4_API = '/api.v4/vehicle.php'; |
|
7 | + const BASE_URL = 'https://api.route4me.com'; |
|
8 | + const WH_BASE_URL = 'https://wh.route4me.com/modules'; |
|
9 | + |
|
10 | + const AVOIDANCE_ZONE = '/api.v4/avoidance.php'; |
|
11 | + const TERRITORY_V4 = '/api.v4/territory.php'; |
|
12 | + |
|
13 | + const GET_ACTIVITIES = '/api/get_activities.php'; |
|
14 | + const ACTIVITY_FEED = '/api.v4/activity_feed.php'; |
|
15 | + |
|
16 | + const ADDRESS_V4 = '/api.v4/address.php'; |
|
17 | + const MOVE_ROUTE_DESTINATION = '/actions/route/move_route_destination.php'; |
|
18 | + const MARK_ADDRESS_DEPARTED = '/api/route/mark_address_departed.php'; |
|
19 | + const UPDATE_ADDRESS_VISITED = '/actions/address/update_address_visited.php'; |
|
20 | + |
|
21 | + const ADDRESS_BOOK_V4 = '/api.v4/address_book.php'; |
|
22 | + const ADDRESS_BOOK_GROUP = '/api.v4/address_book_group.php'; |
|
23 | + const ADDRESS_BOOK_SEARCH = '/api/address_book/get_search_group_addresses.php'; |
|
24 | + const MODIFY_CONTACT = '/api/address_book/modify_contact.php'; |
|
25 | + |
|
26 | + const GEOCODER = '/api/geocoder.php'; |
|
27 | + const JSON_GEOCODE = '/actions/upload/json-geocode.php'; |
|
28 | + const STREET_DATA = 'https://rapid.route4me.com/street_data/'; |
|
29 | + const STREET_DATA_ZIPCODE = 'https://rapid.route4me.com/street_data/zipcode/'; |
|
30 | + const STREET_DATA_SERVICE = 'https://rapid.route4me.com/street_data/service/'; |
|
31 | + |
|
32 | + const USER_V4 = '/api.v4/user.php'; |
|
33 | + const VERIFY_DEVICE_LICENSE = '/api/device/verify_device_license.php'; |
|
34 | + const USER_LICENSE = '/api/member/user_license.php'; |
|
35 | + const WEBINAR_REGISTER = '/actions/webinar_register.php'; |
|
36 | + const EXPIRE_SESSION = '/datafeed/session/expire_session.php'; |
|
37 | + const VALIDATE_SESSION = '/datafeed/session/validate_session.php'; |
|
38 | + const AUTHENTICATE = '/actions/authenticate.php'; |
|
39 | + const REGISTER_ACTION = '/actions/register_action.php'; |
|
40 | + const VIEW_USER_LOCATIONS = '/api/track/view_user_locations.php'; |
|
41 | + const CONFIGURATION_SETTINGS = '/api.v4/configuration-settings.php'; |
|
42 | + |
|
43 | + const OPTIMIZATION_PROBLEM = '/api.v4/optimization_problem.php'; |
|
44 | + const HYBRID_DATE_OPTIMIZATION = '/api.v4/hybrid_date_optimization.php'; |
|
45 | + const CHANGE_HYBRID_OPTIMIZATION_DEPOT = '/api/change_hybrid_optimization_depot.php'; |
|
46 | + |
|
47 | + const ORDER_V4 = '/api.v4/order.php'; |
|
48 | + const ORDER_CUSTOM_FIELDS_V4 = '/api.v4/order_custom_user_fields.php'; |
|
49 | + |
|
50 | + const ROUTE_V4 = '/api.v4/route.php'; |
|
51 | + const ROUTE_DUPLICATE = '/actions/duplicate_route.php'; |
|
52 | + const ROUTES_DELETE = '/actions/delete_routes.php'; |
|
53 | + const REOPTIMIZE_V3_2 = '/api.v3/route/reoptimize_2.php'; |
|
54 | + const ROUTES_MERGE = '/actions/merge_routes.php'; |
|
55 | + const ROUTE_SHARE = '/actions/route/share_route.php'; |
|
56 | + const ROUTE_NOTES_ADD = '/actions/addRouteNotes.php'; |
|
57 | + const STATUS_V4 = '/api.v4/status.php'; |
|
58 | + |
|
59 | + const GET_DEVICE_LOCATION = '/api/track/get_device_location.php'; |
|
60 | + const TRACK_SET = '/track/set.php'; |
|
61 | + const USER_LOCATION = '/api/track/view_user_locations.php'; |
|
62 | + |
|
63 | + const NOTE_CUSTOM_TYPES_V4 = '/api.v4/note_custom_types.php'; |
|
64 | + |
|
65 | + const ViewVehicles = '/api/vehicles/view_vehicles.php'; |
|
66 | + const VEHICLE_V4 = '/api/vehicles'; |
|
67 | + const VEHICLE_V4_API = '/api.v4/vehicle.php'; |
|
68 | 68 | |
69 | - const TELEMATICS_VENDORS = "http://telematics.route4me.com/api/vendors.php"; |
|
70 | - const TELEMATICS_REGISTER_MEMBER = "/api.v4/telematics/register.php"; |
|
71 | - const TELEMATICS_CONNECTION = "/api.v4/telematics/connections.php"; |
|
72 | - const TELEMATICS_VENDORS_INFO = "/api.v4/telematics/vendors.php"; |
|
69 | + const TELEMATICS_VENDORS = "http://telematics.route4me.com/api/vendors.php"; |
|
70 | + const TELEMATICS_REGISTER_MEMBER = "/api.v4/telematics/register.php"; |
|
71 | + const TELEMATICS_CONNECTION = "/api.v4/telematics/connections.php"; |
|
72 | + const TELEMATICS_VENDORS_INFO = "/api.v4/telematics/vendors.php"; |
|
73 | 73 | |
74 | - const MEMBER_CAPABILITIES = "/api/member/capabilities.php"; |
|
74 | + const MEMBER_CAPABILITIES = "/api/member/capabilities.php"; |
|
75 | 75 | |
76 | - const SCHEDULE_CALENDAR = "/api/schedule_calendar_data.php"; |
|
76 | + const SCHEDULE_CALENDAR = "/api/schedule_calendar_data.php"; |
|
77 | 77 | } |
@@ -67,9 +67,9 @@ |
||
67 | 67 | const VEHICLE_V4_API = '/api.v4/vehicle.php'; |
68 | 68 | |
69 | 69 | const TELEMATICS_VENDORS = "http://telematics.route4me.com/api/vendors.php"; |
70 | - const TELEMATICS_REGISTER_MEMBER = "/api.v4/telematics/register.php"; |
|
71 | - const TELEMATICS_CONNECTION = "/api.v4/telematics/connections.php"; |
|
72 | - const TELEMATICS_VENDORS_INFO = "/api.v4/telematics/vendors.php"; |
|
70 | + const TELEMATICS_REGISTER_MEMBER = "/api.v4/telematics/register.php"; |
|
71 | + const TELEMATICS_CONNECTION = "/api.v4/telematics/connections.php"; |
|
72 | + const TELEMATICS_VENDORS_INFO = "/api.v4/telematics/vendors.php"; |
|
73 | 73 | |
74 | 74 | const MEMBER_CAPABILITIES = "/api/member/capabilities.php"; |
75 | 75 |
@@ -4,8 +4,8 @@ |
||
4 | 4 | |
5 | 5 | class Avoidance |
6 | 6 | { |
7 | - const HIGHWAYS = 'Highways'; |
|
8 | - const TOLLS = 'Tolls'; |
|
9 | - const MINIMIZE_HIGHWAYS = 'minimizeHighways'; |
|
10 | - const MINIMIZE_TOLLS = 'minimizeTolls'; |
|
7 | + const HIGHWAYS = 'Highways'; |
|
8 | + const TOLLS = 'Tolls'; |
|
9 | + const MINIMIZE_HIGHWAYS = 'minimizeHighways'; |
|
10 | + const MINIMIZE_TOLLS = 'minimizeTolls'; |
|
11 | 11 | } |