@@ -9,117 +9,117 @@ |
||
9 | 9 | */ |
10 | 10 | class Connection extends Common |
11 | 11 | { |
12 | - /** |
|
13 | - * Telemetics connection name |
|
14 | - * @var type string |
|
15 | - */ |
|
16 | - public $name; |
|
17 | - |
|
18 | - /** |
|
19 | - * Telemetics connection type |
|
20 | - * @var type string |
|
21 | - */ |
|
22 | - public $vendor; |
|
12 | + /** |
|
13 | + * Telemetics connection name |
|
14 | + * @var type string |
|
15 | + */ |
|
16 | + public $name; |
|
17 | + |
|
18 | + /** |
|
19 | + * Telemetics connection type |
|
20 | + * @var type string |
|
21 | + */ |
|
22 | + public $vendor; |
|
23 | 23 | |
24 | - /** |
|
25 | - * Telematics connection access host |
|
26 | - * @var type string |
|
27 | - */ |
|
28 | - public $host; |
|
29 | - |
|
30 | - /** |
|
31 | - * Telematics connection access api_key |
|
32 | - * @var type string |
|
33 | - */ |
|
34 | - public $api_key; |
|
35 | - |
|
36 | - /** |
|
37 | - * Telematics connection access account ID. |
|
38 | - * @var type string |
|
39 | - */ |
|
40 | - public $account_id; |
|
41 | - |
|
42 | - /** |
|
43 | - * Telematics connection access username |
|
44 | - * @var type string |
|
45 | - */ |
|
46 | - public $username; |
|
47 | - |
|
48 | - /** |
|
49 | - * Telematics connection access password |
|
50 | - * @var type string |
|
51 | - */ |
|
52 | - public $password; |
|
53 | - |
|
54 | - /** |
|
55 | - * Telematics connection access token |
|
56 | - * @var type string |
|
57 | - */ |
|
58 | - public $connection_token; |
|
59 | - |
|
60 | - /** |
|
61 | - * Telemetics connection type ID |
|
62 | - * @var type integer |
|
63 | - */ |
|
64 | - public $vendor_id; |
|
65 | - |
|
66 | - /** |
|
67 | - * Disable/enable vehicle tracking |
|
68 | - * @var type Boolean |
|
69 | - */ |
|
70 | - public $is_enabled; |
|
71 | - |
|
72 | - /** |
|
73 | - * Vehicle tracking interval in seconds |
|
74 | - * @var type integer |
|
75 | - */ |
|
76 | - public $vehicle_position_refresh_rate; |
|
77 | - |
|
78 | - /** |
|
79 | - * Maximum idle time |
|
80 | - * @var type integer |
|
81 | - */ |
|
82 | - public $max_idle_time; |
|
83 | - |
|
84 | - /** |
|
85 | - * Syncronized vehicles count |
|
86 | - * @var type integer |
|
87 | - */ |
|
88 | - public $synced_vehicles_count; |
|
89 | - |
|
90 | - /** |
|
91 | - * Total vehicles count |
|
92 | - * @var type integer |
|
93 | - */ |
|
94 | - public $total_vehicles_count; |
|
95 | - |
|
96 | - /** |
|
97 | - * Total addresses count |
|
98 | - * @var type integer |
|
99 | - */ |
|
100 | - public $total_addresses_count; |
|
101 | - |
|
102 | - /** |
|
103 | - * The last timestamp the vehicles reloaded |
|
104 | - * @var type string |
|
105 | - */ |
|
106 | - public $last_vehicles_reload; |
|
107 | - |
|
108 | - /** |
|
109 | - * The last timestamp the addresses reloaded |
|
110 | - * @var type string |
|
111 | - */ |
|
112 | - public $last_addresses_reload; |
|
113 | - |
|
114 | - /** |
|
115 | - * The last timestamp the postions reloaded |
|
116 | - * @var type string |
|
117 | - */ |
|
118 | - public $last_position_reload; |
|
119 | - |
|
120 | - /** |
|
121 | - * Metadata, custom key-value storage. |
|
122 | - * @var type array |
|
123 | - */ |
|
124 | - public $metadata = []; |
|
24 | + /** |
|
25 | + * Telematics connection access host |
|
26 | + * @var type string |
|
27 | + */ |
|
28 | + public $host; |
|
29 | + |
|
30 | + /** |
|
31 | + * Telematics connection access api_key |
|
32 | + * @var type string |
|
33 | + */ |
|
34 | + public $api_key; |
|
35 | + |
|
36 | + /** |
|
37 | + * Telematics connection access account ID. |
|
38 | + * @var type string |
|
39 | + */ |
|
40 | + public $account_id; |
|
41 | + |
|
42 | + /** |
|
43 | + * Telematics connection access username |
|
44 | + * @var type string |
|
45 | + */ |
|
46 | + public $username; |
|
47 | + |
|
48 | + /** |
|
49 | + * Telematics connection access password |
|
50 | + * @var type string |
|
51 | + */ |
|
52 | + public $password; |
|
53 | + |
|
54 | + /** |
|
55 | + * Telematics connection access token |
|
56 | + * @var type string |
|
57 | + */ |
|
58 | + public $connection_token; |
|
59 | + |
|
60 | + /** |
|
61 | + * Telemetics connection type ID |
|
62 | + * @var type integer |
|
63 | + */ |
|
64 | + public $vendor_id; |
|
65 | + |
|
66 | + /** |
|
67 | + * Disable/enable vehicle tracking |
|
68 | + * @var type Boolean |
|
69 | + */ |
|
70 | + public $is_enabled; |
|
71 | + |
|
72 | + /** |
|
73 | + * Vehicle tracking interval in seconds |
|
74 | + * @var type integer |
|
75 | + */ |
|
76 | + public $vehicle_position_refresh_rate; |
|
77 | + |
|
78 | + /** |
|
79 | + * Maximum idle time |
|
80 | + * @var type integer |
|
81 | + */ |
|
82 | + public $max_idle_time; |
|
83 | + |
|
84 | + /** |
|
85 | + * Syncronized vehicles count |
|
86 | + * @var type integer |
|
87 | + */ |
|
88 | + public $synced_vehicles_count; |
|
89 | + |
|
90 | + /** |
|
91 | + * Total vehicles count |
|
92 | + * @var type integer |
|
93 | + */ |
|
94 | + public $total_vehicles_count; |
|
95 | + |
|
96 | + /** |
|
97 | + * Total addresses count |
|
98 | + * @var type integer |
|
99 | + */ |
|
100 | + public $total_addresses_count; |
|
101 | + |
|
102 | + /** |
|
103 | + * The last timestamp the vehicles reloaded |
|
104 | + * @var type string |
|
105 | + */ |
|
106 | + public $last_vehicles_reload; |
|
107 | + |
|
108 | + /** |
|
109 | + * The last timestamp the addresses reloaded |
|
110 | + * @var type string |
|
111 | + */ |
|
112 | + public $last_addresses_reload; |
|
113 | + |
|
114 | + /** |
|
115 | + * The last timestamp the postions reloaded |
|
116 | + * @var type string |
|
117 | + */ |
|
118 | + public $last_position_reload; |
|
119 | + |
|
120 | + /** |
|
121 | + * Metadata, custom key-value storage. |
|
122 | + * @var type array |
|
123 | + */ |
|
124 | + public $metadata = []; |
|
125 | 125 | } |
@@ -10,83 +10,83 @@ |
||
10 | 10 | */ |
11 | 11 | class ConnectionParameters extends Common |
12 | 12 | { |
13 | - /** |
|
14 | - * Telemetics connection type |
|
15 | - * @var type string |
|
16 | - */ |
|
17 | - public $vendor; |
|
13 | + /** |
|
14 | + * Telemetics connection type |
|
15 | + * @var type string |
|
16 | + */ |
|
17 | + public $vendor; |
|
18 | 18 | |
19 | - /** |
|
20 | - * Telemetics connection type ID |
|
21 | - * @var type integer |
|
22 | - */ |
|
23 | - public $vendor_id; |
|
19 | + /** |
|
20 | + * Telemetics connection type ID |
|
21 | + * @var type integer |
|
22 | + */ |
|
23 | + public $vendor_id; |
|
24 | 24 | |
25 | - /** |
|
26 | - * Telemetics connection name |
|
27 | - * Required for telematics connection registration. |
|
28 | - * @var type string |
|
29 | - */ |
|
30 | - public $name; |
|
25 | + /** |
|
26 | + * Telemetics connection name |
|
27 | + * Required for telematics connection registration. |
|
28 | + * @var type string |
|
29 | + */ |
|
30 | + public $name; |
|
31 | 31 | |
32 | - /** |
|
33 | - * Telematics connection access host. |
|
34 | - * @var type string |
|
35 | - */ |
|
36 | - public $host; |
|
32 | + /** |
|
33 | + * Telematics connection access host. |
|
34 | + * @var type string |
|
35 | + */ |
|
36 | + public $host; |
|
37 | 37 | |
38 | - /** |
|
39 | - * Telematics connection access api_key. |
|
40 | - * @var type string |
|
41 | - */ |
|
42 | - public $api_key; |
|
38 | + /** |
|
39 | + * Telematics connection access api_key. |
|
40 | + * @var type string |
|
41 | + */ |
|
42 | + public $api_key; |
|
43 | 43 | |
44 | - /** |
|
45 | - * Telematics connection access account_id. |
|
46 | - * @var type string |
|
47 | - */ |
|
48 | - public $account_id; |
|
44 | + /** |
|
45 | + * Telematics connection access account_id. |
|
46 | + * @var type string |
|
47 | + */ |
|
48 | + public $account_id; |
|
49 | 49 | |
50 | - /** |
|
51 | - * Telematics connection access username |
|
52 | - * @var type string |
|
53 | - */ |
|
54 | - public $username; |
|
50 | + /** |
|
51 | + * Telematics connection access username |
|
52 | + * @var type string |
|
53 | + */ |
|
54 | + public $username; |
|
55 | 55 | |
56 | - /** |
|
57 | - * Telematics connection access password. |
|
58 | - * @var type string |
|
59 | - */ |
|
60 | - public $password; |
|
56 | + /** |
|
57 | + * Telematics connection access password. |
|
58 | + * @var type string |
|
59 | + */ |
|
60 | + public $password; |
|
61 | 61 | |
62 | - /** |
|
63 | - * Vehicle tracking interval in seconds (default value 60). |
|
64 | - * @var type integer |
|
65 | - */ |
|
66 | - public $vehicle_position_refresh_rate; |
|
62 | + /** |
|
63 | + * Vehicle tracking interval in seconds (default value 60). |
|
64 | + * @var type integer |
|
65 | + */ |
|
66 | + public $vehicle_position_refresh_rate; |
|
67 | 67 | |
68 | - /** |
|
69 | - * Validate connections credentials. |
|
70 | - * @var type Boolean |
|
71 | - */ |
|
72 | - public $validate_remote_credentials; |
|
68 | + /** |
|
69 | + * Validate connections credentials. |
|
70 | + * @var type Boolean |
|
71 | + */ |
|
72 | + public $validate_remote_credentials; |
|
73 | 73 | |
74 | - /** |
|
75 | - * Disable/enable vehicle tracking. |
|
76 | - * @var type Boolean |
|
77 | - */ |
|
78 | - public $is_enabled; |
|
74 | + /** |
|
75 | + * Disable/enable vehicle tracking. |
|
76 | + * @var type Boolean |
|
77 | + */ |
|
78 | + public $is_enabled; |
|
79 | 79 | |
80 | - /** |
|
81 | - * Metadata |
|
82 | - * @var type string |
|
83 | - */ |
|
84 | - public $metadata; |
|
80 | + /** |
|
81 | + * Metadata |
|
82 | + * @var type string |
|
83 | + */ |
|
84 | + public $metadata; |
|
85 | 85 | |
86 | - /** |
|
87 | - * Telematics connection access token. |
|
88 | - * Required to show specified connection. |
|
89 | - * @var type string |
|
90 | - */ |
|
91 | - public $connection_token; |
|
86 | + /** |
|
87 | + * Telematics connection access token. |
|
88 | + * Required to show specified connection. |
|
89 | + * @var type string |
|
90 | + */ |
|
91 | + public $connection_token; |
|
92 | 92 | } |
@@ -10,53 +10,53 @@ |
||
10 | 10 | */ |
11 | 11 | class OrderInventory extends \Route4Me\Common |
12 | 12 | { |
13 | - /** Unique inventory ID |
|
14 | - * @var integer $inventory_id |
|
15 | - */ |
|
16 | - public $inventory_id; |
|
17 | - |
|
18 | - /** Unique order ID |
|
19 | - * @var integer $order_id |
|
20 | - */ |
|
21 | - public $order_id; |
|
22 | - |
|
23 | - /** Order inventory name |
|
24 | - * @var string $name |
|
25 | - */ |
|
26 | - public $name; |
|
27 | - |
|
28 | - /** Order inventory quantity |
|
29 | - * @var integer $quantity |
|
30 | - */ |
|
31 | - public $quantity; |
|
32 | - |
|
33 | - /** Total weight of the order inventory. |
|
34 | - * @var double $total_weight |
|
35 | - */ |
|
36 | - public $total_weight; |
|
37 | - |
|
38 | - /** Total volume of the inventory. |
|
39 | - * @var double $total_volume |
|
40 | - */ |
|
41 | - public $total_volume; |
|
42 | - |
|
43 | - /** Total cost of the inventory. |
|
44 | - * @var double $total_cost |
|
45 | - */ |
|
46 | - public $total_cost; |
|
47 | - |
|
48 | - /** Total price of the inventory. |
|
49 | - * @var double $total_price |
|
50 | - */ |
|
51 | - public $total_price; |
|
52 | - |
|
53 | - /** When the inventory created. |
|
54 | - * @var string $created_at |
|
55 | - */ |
|
56 | - public $created_at; |
|
57 | - |
|
58 | - /** When the inventory updated. |
|
59 | - * @var string $updated_at |
|
60 | - */ |
|
61 | - public $updated_at; |
|
13 | + /** Unique inventory ID |
|
14 | + * @var integer $inventory_id |
|
15 | + */ |
|
16 | + public $inventory_id; |
|
17 | + |
|
18 | + /** Unique order ID |
|
19 | + * @var integer $order_id |
|
20 | + */ |
|
21 | + public $order_id; |
|
22 | + |
|
23 | + /** Order inventory name |
|
24 | + * @var string $name |
|
25 | + */ |
|
26 | + public $name; |
|
27 | + |
|
28 | + /** Order inventory quantity |
|
29 | + * @var integer $quantity |
|
30 | + */ |
|
31 | + public $quantity; |
|
32 | + |
|
33 | + /** Total weight of the order inventory. |
|
34 | + * @var double $total_weight |
|
35 | + */ |
|
36 | + public $total_weight; |
|
37 | + |
|
38 | + /** Total volume of the inventory. |
|
39 | + * @var double $total_volume |
|
40 | + */ |
|
41 | + public $total_volume; |
|
42 | + |
|
43 | + /** Total cost of the inventory. |
|
44 | + * @var double $total_cost |
|
45 | + */ |
|
46 | + public $total_cost; |
|
47 | + |
|
48 | + /** Total price of the inventory. |
|
49 | + * @var double $total_price |
|
50 | + */ |
|
51 | + public $total_price; |
|
52 | + |
|
53 | + /** When the inventory created. |
|
54 | + * @var string $created_at |
|
55 | + */ |
|
56 | + public $created_at; |
|
57 | + |
|
58 | + /** When the inventory updated. |
|
59 | + * @var string $updated_at |
|
60 | + */ |
|
61 | + public $updated_at; |
|
62 | 62 | } |
@@ -11,23 +11,23 @@ |
||
11 | 11 | */ |
12 | 12 | class ResultResponse extends \Route4Me\Common |
13 | 13 | { |
14 | - /** Status (true/false) |
|
15 | - * @var boolean $status |
|
16 | - */ |
|
17 | - public $status; |
|
14 | + /** Status (true/false) |
|
15 | + * @var boolean $status |
|
16 | + */ |
|
17 | + public $status; |
|
18 | 18 | |
19 | - /** Status code |
|
20 | - * @var integer $code |
|
21 | - */ |
|
22 | - public $code; |
|
19 | + /** Status code |
|
20 | + * @var integer $code |
|
21 | + */ |
|
22 | + public $code; |
|
23 | 23 | |
24 | - /** Exit code |
|
25 | - * @var integer $exit_code |
|
26 | - */ |
|
27 | - public $exit_code; |
|
24 | + /** Exit code |
|
25 | + * @var integer $exit_code |
|
26 | + */ |
|
27 | + public $exit_code; |
|
28 | 28 | |
29 | - /** An array of the error messages. |
|
30 | - * @var Array $messages |
|
31 | - */ |
|
32 | - public $messages; |
|
29 | + /** An array of the error messages. |
|
30 | + * @var Array $messages |
|
31 | + */ |
|
32 | + public $messages; |
|
33 | 33 | } |
@@ -4,30 +4,30 @@ |
||
4 | 4 | |
5 | 5 | class MemberData extends \Route4Me\Common |
6 | 6 | { |
7 | - /** @var int $account_type_id */ |
|
8 | - public $account_type_id; |
|
7 | + /** @var int $account_type_id */ |
|
8 | + public $account_type_id; |
|
9 | 9 | |
10 | - /** @var string $member_email */ |
|
11 | - public $member_email; |
|
10 | + /** @var string $member_email */ |
|
11 | + public $member_email; |
|
12 | 12 | |
13 | - /** @var string $member_first_name */ |
|
14 | - public $member_first_name; |
|
13 | + /** @var string $member_first_name */ |
|
14 | + public $member_first_name; |
|
15 | 15 | |
16 | - /** @var int $member_id */ |
|
17 | - public $member_id; |
|
16 | + /** @var int $member_id */ |
|
17 | + public $member_id; |
|
18 | 18 | |
19 | - /** @var string $member_last_name */ |
|
20 | - public $member_last_name; |
|
19 | + /** @var string $member_last_name */ |
|
20 | + public $member_last_name; |
|
21 | 21 | |
22 | - /** @var string $member_type */ |
|
23 | - public $member_type; |
|
22 | + /** @var string $member_type */ |
|
23 | + public $member_type; |
|
24 | 24 | |
25 | - /** @var string $phone_number */ |
|
26 | - public $phone_number; |
|
25 | + /** @var string $phone_number */ |
|
26 | + public $phone_number; |
|
27 | 27 | |
28 | - /** @var boolean $readonly_user */ |
|
29 | - public $readonly_user; |
|
28 | + /** @var boolean $readonly_user */ |
|
29 | + public $readonly_user; |
|
30 | 30 | |
31 | - /** @var boolean $show_superuser_addresses */ |
|
32 | - public $show_superuser_addresses; |
|
31 | + /** @var boolean $show_superuser_addresses */ |
|
32 | + public $show_superuser_addresses; |
|
33 | 33 | } |
@@ -4,84 +4,84 @@ |
||
4 | 4 | |
5 | 5 | class UserTracking extends \Route4Me\Common |
6 | 6 | { |
7 | - /** @var string $route_id */ |
|
8 | - public $route_id; |
|
7 | + /** @var string $route_id */ |
|
8 | + public $route_id; |
|
9 | 9 | |
10 | - /** @var string $device_id */ |
|
11 | - public $device_id; |
|
10 | + /** @var string $device_id */ |
|
11 | + public $device_id; |
|
12 | 12 | |
13 | - /** @var long $activity_timestamp */ |
|
14 | - public $activity_timestamp; |
|
13 | + /** @var long $activity_timestamp */ |
|
14 | + public $activity_timestamp; |
|
15 | 15 | |
16 | - /** @var string $activity_timestamp */ |
|
17 | - public $device_timestamp; |
|
16 | + /** @var string $activity_timestamp */ |
|
17 | + public $device_timestamp; |
|
18 | 18 | |
19 | - /** @var int $device_type */ |
|
20 | - public $device_type; |
|
19 | + /** @var int $device_type */ |
|
20 | + public $device_type; |
|
21 | 21 | |
22 | - /** @var int $member_id */ |
|
23 | - public $member_id; |
|
22 | + /** @var int $member_id */ |
|
23 | + public $member_id; |
|
24 | 24 | |
25 | - /** @var int $root_member_id */ |
|
26 | - public $root_member_id; |
|
25 | + /** @var int $root_member_id */ |
|
26 | + public $root_member_id; |
|
27 | 27 | |
28 | - /** @var string $vehicle_id */ |
|
29 | - public $vehicle_id; |
|
28 | + /** @var string $vehicle_id */ |
|
29 | + public $vehicle_id; |
|
30 | 30 | |
31 | - /** @var int $direction */ |
|
32 | - public $direction; |
|
31 | + /** @var int $direction */ |
|
32 | + public $direction; |
|
33 | 33 | |
34 | - /** @var int $speed */ |
|
35 | - public $speed; |
|
34 | + /** @var int $speed */ |
|
35 | + public $speed; |
|
36 | 36 | |
37 | - /** @var string $calculated_speed */ |
|
38 | - public $calculated_speed; |
|
37 | + /** @var string $calculated_speed */ |
|
38 | + public $calculated_speed; |
|
39 | 39 | |
40 | - /** @var string $speed_accuracy */ |
|
41 | - public $speed_accuracy; |
|
40 | + /** @var string $speed_accuracy */ |
|
41 | + public $speed_accuracy; |
|
42 | 42 | |
43 | - /** @var string $speed_unit */ |
|
44 | - public $speed_unit; |
|
43 | + /** @var string $speed_unit */ |
|
44 | + public $speed_unit; |
|
45 | 45 | |
46 | - /** @var int $bearing */ |
|
47 | - public $bearing; |
|
46 | + /** @var int $bearing */ |
|
47 | + public $bearing; |
|
48 | 48 | |
49 | - /** @var string $bearing_accuracy */ |
|
50 | - public $bearing_accuracy; |
|
49 | + /** @var string $bearing_accuracy */ |
|
50 | + public $bearing_accuracy; |
|
51 | 51 | |
52 | - /** @var string $accuracy */ |
|
53 | - public $accuracy; |
|
52 | + /** @var string $accuracy */ |
|
53 | + public $accuracy; |
|
54 | 54 | |
55 | - /** @var int $day_id */ |
|
56 | - public $day_id; |
|
55 | + /** @var int $day_id */ |
|
56 | + public $day_id; |
|
57 | 57 | |
58 | - /** @var double $position_lat */ |
|
59 | - public $position_lat; |
|
58 | + /** @var double $position_lat */ |
|
59 | + public $position_lat; |
|
60 | 60 | |
61 | - /** @var double $position_lng */ |
|
62 | - public $position_lng; |
|
61 | + /** @var double $position_lng */ |
|
62 | + public $position_lng; |
|
63 | 63 | |
64 | - /** @var int $altitude */ |
|
65 | - public $altitude; |
|
64 | + /** @var int $altitude */ |
|
65 | + public $altitude; |
|
66 | 66 | |
67 | - /** @var int $footsteps */ |
|
68 | - public $footsteps; |
|
67 | + /** @var int $footsteps */ |
|
68 | + public $footsteps; |
|
69 | 69 | |
70 | - /** @var string $data_source_name */ |
|
71 | - public $data_source_name; |
|
70 | + /** @var string $data_source_name */ |
|
71 | + public $data_source_name; |
|
72 | 72 | |
73 | - /** @var string $custom_data */ |
|
74 | - public $custom_data; |
|
73 | + /** @var string $custom_data */ |
|
74 | + public $custom_data; |
|
75 | 75 | |
76 | - /** @var string $device_timezone */ |
|
77 | - public $device_timezone; |
|
76 | + /** @var string $device_timezone */ |
|
77 | + public $device_timezone; |
|
78 | 78 | |
79 | - /** @var int $device_timezone_offset */ |
|
80 | - public $device_timezone_offset; |
|
79 | + /** @var int $device_timezone_offset */ |
|
80 | + public $device_timezone_offset; |
|
81 | 81 | |
82 | - /** @var string $activity_timestamp_friendly */ |
|
83 | - public $activity_timestamp_friendly; |
|
82 | + /** @var string $activity_timestamp_friendly */ |
|
83 | + public $activity_timestamp_friendly; |
|
84 | 84 | |
85 | - /** @var long $LAST_KNOWN */ |
|
86 | - public $LAST_KNOWN; |
|
85 | + /** @var long $LAST_KNOWN */ |
|
86 | + public $LAST_KNOWN; |
|
87 | 87 | } |
@@ -4,13 +4,13 @@ |
||
4 | 4 | |
5 | 5 | class SetGpsResponse extends \Route4Me\Common |
6 | 6 | { |
7 | - /** @var boolean $status |
|
8 | - * Status of the GPS setting request process. |
|
9 | - */ |
|
10 | - public $status; |
|
7 | + /** @var boolean $status |
|
8 | + * Status of the GPS setting request process. |
|
9 | + */ |
|
10 | + public $status; |
|
11 | 11 | |
12 | - /** @var string $tx_id |
|
13 | - * Unique ID of the GPS points group. |
|
14 | - */ |
|
15 | - public $tx_id; |
|
12 | + /** @var string $tx_id |
|
13 | + * Unique ID of the GPS points group. |
|
14 | + */ |
|
15 | + public $tx_id; |
|
16 | 16 | } |
@@ -8,141 +8,141 @@ |
||
8 | 8 | */ |
9 | 9 | class FindAssetResponse extends \Route4Me\Common |
10 | 10 | { |
11 | - /** |
|
12 | - * Tracking number |
|
13 | - * @var type string |
|
14 | - */ |
|
15 | - public $tracking_number; |
|
16 | - |
|
17 | - /** |
|
18 | - * A link to a large logo |
|
19 | - * @var type string |
|
20 | - */ |
|
21 | - public $large_logo_uri; |
|
22 | - |
|
23 | - /** |
|
24 | - * A link to a large logo (2x) |
|
25 | - * @var type string |
|
26 | - */ |
|
27 | - public $large_logo_uri_2x; |
|
28 | - |
|
29 | - /** |
|
30 | - * A link to a mobile logo |
|
31 | - * @var type string |
|
32 | - */ |
|
33 | - public $mobile_logo_uri; |
|
34 | - |
|
35 | - /** |
|
36 | - * A link to a mobile logo (2x) |
|
37 | - * @var type string |
|
38 | - */ |
|
39 | - public $mobile_logo_uri_2x; |
|
40 | - |
|
41 | - /** |
|
42 | - * The asset color on a map |
|
43 | - * @var type string |
|
44 | - */ |
|
45 | - public $map_color; |
|
46 | - |
|
47 | - /** |
|
48 | - * An alignment of a large logo |
|
49 | - * @var type string |
|
50 | - */ |
|
51 | - public $large_logo_alignment; |
|
52 | - |
|
53 | - /** |
|
54 | - * An alignment of a mobile logo |
|
55 | - * @var type string |
|
56 | - */ |
|
57 | - public $mobile_logo_alignment; |
|
58 | - |
|
59 | - /** |
|
60 | - * Show map zoom controls |
|
61 | - * @var type Boolean |
|
62 | - */ |
|
63 | - public $show_map_zoom_controls; |
|
64 | - |
|
65 | - /** |
|
66 | - * Customer service phone |
|
67 | - * @var type string |
|
68 | - */ |
|
69 | - public $customer_service_phone; |
|
70 | - |
|
71 | - /** |
|
72 | - * If true, Covid19 warning hidden |
|
73 | - * @var type |
|
74 | - */ |
|
75 | - public $hide_covid19_warning; |
|
76 | - |
|
77 | - /** |
|
78 | - * Driver phone number |
|
79 | - * @var type string |
|
80 | - */ |
|
81 | - public $driver_phone; |
|
82 | - |
|
83 | - /** |
|
84 | - * If true, the route started |
|
85 | - * @var type Boolean |
|
86 | - */ |
|
87 | - public $route_started; |
|
88 | - |
|
89 | - /** |
|
90 | - * Driver name |
|
91 | - * @var type string |
|
92 | - */ |
|
93 | - public $driver_name; |
|
94 | - |
|
95 | - /** |
|
96 | - * A link to a driver picture file |
|
97 | - * @var type string |
|
98 | - */ |
|
99 | - public $driver_picture; |
|
100 | - |
|
101 | - /** |
|
102 | - * A sub-headline of a tracking page |
|
103 | - * @var type string |
|
104 | - */ |
|
105 | - public $tracking_page_subheadline; |
|
106 | - |
|
107 | - /** |
|
108 | - * A first destination address |
|
109 | - * @var type string |
|
110 | - */ |
|
111 | - public $destination_address_1; |
|
112 | - |
|
113 | - /** |
|
114 | - * A second destination address |
|
115 | - * @var type string |
|
116 | - */ |
|
117 | - public $destination_address_2; |
|
118 | - |
|
119 | - /** |
|
120 | - * True if the asset was delivered |
|
121 | - * @var type Boolean |
|
122 | - */ |
|
123 | - public $delivered; |
|
124 | - |
|
125 | - /** |
|
126 | - * Asset status history |
|
127 | - * @var type array |
|
128 | - */ |
|
129 | - public $status_history = []; |
|
130 | - |
|
131 | - /** |
|
132 | - * An array of the asset locations |
|
133 | - * @var type array |
|
134 | - */ |
|
135 | - public $locations = []; |
|
136 | - |
|
137 | - /** |
|
138 | - * Custom data |
|
139 | - * @var type array |
|
140 | - */ |
|
141 | - public $custom_data; |
|
142 | - |
|
143 | - /** |
|
144 | - * An array of the asset arrival times |
|
145 | - * @var type array |
|
146 | - */ |
|
147 | - public $arrival = []; |
|
11 | + /** |
|
12 | + * Tracking number |
|
13 | + * @var type string |
|
14 | + */ |
|
15 | + public $tracking_number; |
|
16 | + |
|
17 | + /** |
|
18 | + * A link to a large logo |
|
19 | + * @var type string |
|
20 | + */ |
|
21 | + public $large_logo_uri; |
|
22 | + |
|
23 | + /** |
|
24 | + * A link to a large logo (2x) |
|
25 | + * @var type string |
|
26 | + */ |
|
27 | + public $large_logo_uri_2x; |
|
28 | + |
|
29 | + /** |
|
30 | + * A link to a mobile logo |
|
31 | + * @var type string |
|
32 | + */ |
|
33 | + public $mobile_logo_uri; |
|
34 | + |
|
35 | + /** |
|
36 | + * A link to a mobile logo (2x) |
|
37 | + * @var type string |
|
38 | + */ |
|
39 | + public $mobile_logo_uri_2x; |
|
40 | + |
|
41 | + /** |
|
42 | + * The asset color on a map |
|
43 | + * @var type string |
|
44 | + */ |
|
45 | + public $map_color; |
|
46 | + |
|
47 | + /** |
|
48 | + * An alignment of a large logo |
|
49 | + * @var type string |
|
50 | + */ |
|
51 | + public $large_logo_alignment; |
|
52 | + |
|
53 | + /** |
|
54 | + * An alignment of a mobile logo |
|
55 | + * @var type string |
|
56 | + */ |
|
57 | + public $mobile_logo_alignment; |
|
58 | + |
|
59 | + /** |
|
60 | + * Show map zoom controls |
|
61 | + * @var type Boolean |
|
62 | + */ |
|
63 | + public $show_map_zoom_controls; |
|
64 | + |
|
65 | + /** |
|
66 | + * Customer service phone |
|
67 | + * @var type string |
|
68 | + */ |
|
69 | + public $customer_service_phone; |
|
70 | + |
|
71 | + /** |
|
72 | + * If true, Covid19 warning hidden |
|
73 | + * @var type |
|
74 | + */ |
|
75 | + public $hide_covid19_warning; |
|
76 | + |
|
77 | + /** |
|
78 | + * Driver phone number |
|
79 | + * @var type string |
|
80 | + */ |
|
81 | + public $driver_phone; |
|
82 | + |
|
83 | + /** |
|
84 | + * If true, the route started |
|
85 | + * @var type Boolean |
|
86 | + */ |
|
87 | + public $route_started; |
|
88 | + |
|
89 | + /** |
|
90 | + * Driver name |
|
91 | + * @var type string |
|
92 | + */ |
|
93 | + public $driver_name; |
|
94 | + |
|
95 | + /** |
|
96 | + * A link to a driver picture file |
|
97 | + * @var type string |
|
98 | + */ |
|
99 | + public $driver_picture; |
|
100 | + |
|
101 | + /** |
|
102 | + * A sub-headline of a tracking page |
|
103 | + * @var type string |
|
104 | + */ |
|
105 | + public $tracking_page_subheadline; |
|
106 | + |
|
107 | + /** |
|
108 | + * A first destination address |
|
109 | + * @var type string |
|
110 | + */ |
|
111 | + public $destination_address_1; |
|
112 | + |
|
113 | + /** |
|
114 | + * A second destination address |
|
115 | + * @var type string |
|
116 | + */ |
|
117 | + public $destination_address_2; |
|
118 | + |
|
119 | + /** |
|
120 | + * True if the asset was delivered |
|
121 | + * @var type Boolean |
|
122 | + */ |
|
123 | + public $delivered; |
|
124 | + |
|
125 | + /** |
|
126 | + * Asset status history |
|
127 | + * @var type array |
|
128 | + */ |
|
129 | + public $status_history = []; |
|
130 | + |
|
131 | + /** |
|
132 | + * An array of the asset locations |
|
133 | + * @var type array |
|
134 | + */ |
|
135 | + public $locations = []; |
|
136 | + |
|
137 | + /** |
|
138 | + * Custom data |
|
139 | + * @var type array |
|
140 | + */ |
|
141 | + public $custom_data; |
|
142 | + |
|
143 | + /** |
|
144 | + * An array of the asset arrival times |
|
145 | + * @var type array |
|
146 | + */ |
|
147 | + public $arrival = []; |
|
148 | 148 | } |
@@ -6,7 +6,7 @@ |
||
6 | 6 | |
7 | 7 | class RapidAddressSearchResponse extends Common |
8 | 8 | { |
9 | - public $zipcode; |
|
10 | - public $street_name; |
|
11 | - public $county_no; |
|
9 | + public $zipcode; |
|
10 | + public $street_name; |
|
11 | + public $county_no; |
|
12 | 12 | } |