samsara-api 0.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2525) hide show
  1. samsara/__init__.py +4518 -0
  2. samsara/addresses/__init__.py +7 -0
  3. samsara/addresses/client.py +726 -0
  4. samsara/addresses/raw_client.py +784 -0
  5. samsara/addresses/types/__init__.py +8 -0
  6. samsara/addresses/types/create_address_request_address_types_item.py +10 -0
  7. samsara/addresses/types/update_address_request_address_types_item.py +10 -0
  8. samsara/alerts/__init__.py +8 -0
  9. samsara/alerts/client.py +44 -0
  10. samsara/alerts/configurations/__init__.py +7 -0
  11. samsara/alerts/configurations/client.py +706 -0
  12. samsara/alerts/configurations/raw_client.py +1513 -0
  13. samsara/alerts/configurations/types/__init__.py +7 -0
  14. samsara/alerts/configurations/types/configurations_list_request_status.py +5 -0
  15. samsara/alerts/incidents/__init__.py +4 -0
  16. samsara/alerts/incidents/client.py +170 -0
  17. samsara/alerts/incidents/raw_client.py +362 -0
  18. samsara/alerts/raw_client.py +13 -0
  19. samsara/assets/__init__.py +21 -0
  20. samsara/assets/client.py +717 -0
  21. samsara/assets/location_and_speed/__init__.py +4 -0
  22. samsara/assets/location_and_speed/client.py +218 -0
  23. samsara/assets/location_and_speed/raw_client.py +414 -0
  24. samsara/assets/raw_client.py +1534 -0
  25. samsara/assets/types/__init__.py +17 -0
  26. samsara/assets/types/assets_create_asset_request_body_regulation_mode.py +7 -0
  27. samsara/assets/types/assets_create_asset_request_body_type.py +7 -0
  28. samsara/assets/types/assets_list_request_type.py +7 -0
  29. samsara/assets/types/assets_update_asset_request_body_regulation_mode.py +7 -0
  30. samsara/assets/types/assets_update_asset_request_body_type.py +7 -0
  31. samsara/attributes/__init__.py +27 -0
  32. samsara/attributes/client.py +684 -0
  33. samsara/attributes/raw_client.py +719 -0
  34. samsara/attributes/types/__init__.py +25 -0
  35. samsara/attributes/types/attributes_delete_request_entity_type.py +5 -0
  36. samsara/attributes/types/attributes_get_request_entity_type.py +5 -0
  37. samsara/attributes/types/attributes_list_request_entity_type.py +5 -0
  38. samsara/attributes/types/create_attribute_request_attribute_type.py +5 -0
  39. samsara/attributes/types/create_attribute_request_attribute_value_quantity.py +5 -0
  40. samsara/attributes/types/create_attribute_request_entity_type.py +5 -0
  41. samsara/attributes/types/update_attribute_request_attribute_type.py +5 -0
  42. samsara/attributes/types/update_attribute_request_attribute_value_quantity.py +5 -0
  43. samsara/attributes/types/update_attribute_request_entity_type.py +5 -0
  44. samsara/auth/__init__.py +7 -0
  45. samsara/auth/client.py +129 -0
  46. samsara/auth/raw_client.py +128 -0
  47. samsara/auth/types/__init__.py +7 -0
  48. samsara/auth/types/get_token_response.py +21 -0
  49. samsara/beta/__init__.py +4 -0
  50. samsara/beta/client.py +161 -0
  51. samsara/beta/raw_client.py +367 -0
  52. samsara/cameras/__init__.py +13 -0
  53. samsara/cameras/client.py +39 -0
  54. samsara/cameras/media/__init__.py +19 -0
  55. samsara/cameras/media/client.py +232 -0
  56. samsara/cameras/media/raw_client.py +417 -0
  57. samsara/cameras/media/retrieval/__init__.py +13 -0
  58. samsara/cameras/media/retrieval/client.py +296 -0
  59. samsara/cameras/media/retrieval/raw_client.py +686 -0
  60. samsara/cameras/media/retrieval/types/__init__.py +15 -0
  61. samsara/cameras/media/retrieval/types/media_retrieval_post_media_retrieval_request_body_inputs_item.py +7 -0
  62. samsara/cameras/media/retrieval/types/media_retrieval_post_media_retrieval_request_body_media_type.py +5 -0
  63. samsara/cameras/media/types/__init__.py +9 -0
  64. samsara/cameras/media/types/media_list_request_inputs_item.py +7 -0
  65. samsara/cameras/media/types/media_list_request_media_types_item.py +5 -0
  66. samsara/cameras/media/types/media_list_request_trigger_reasons_item.py +10 -0
  67. samsara/cameras/raw_client.py +13 -0
  68. samsara/carrier_proposed_assignments/__init__.py +4 -0
  69. samsara/carrier_proposed_assignments/client.py +384 -0
  70. samsara/carrier_proposed_assignments/raw_client.py +400 -0
  71. samsara/client.py +284 -0
  72. samsara/coaching/__init__.py +7 -0
  73. samsara/coaching/client.py +44 -0
  74. samsara/coaching/driver_coach_assignments/__init__.py +4 -0
  75. samsara/coaching/driver_coach_assignments/client.py +275 -0
  76. samsara/coaching/driver_coach_assignments/raw_client.py +679 -0
  77. samsara/coaching/raw_client.py +13 -0
  78. samsara/coaching/sessions/__init__.py +4 -0
  79. samsara/coaching/sessions/client.py +220 -0
  80. samsara/coaching/sessions/raw_client.py +406 -0
  81. samsara/contacts/__init__.py +4 -0
  82. samsara/contacts/client.py +532 -0
  83. samsara/contacts/raw_client.py +588 -0
  84. samsara/core/__init__.py +55 -0
  85. samsara/core/api_error.py +23 -0
  86. samsara/core/client_wrapper.py +77 -0
  87. samsara/core/datetime_utils.py +28 -0
  88. samsara/core/file.py +67 -0
  89. samsara/core/force_multipart.py +16 -0
  90. samsara/core/http_client.py +543 -0
  91. samsara/core/http_response.py +55 -0
  92. samsara/core/jsonable_encoder.py +100 -0
  93. samsara/core/pagination.py +82 -0
  94. samsara/core/pydantic_utilities.py +255 -0
  95. samsara/core/query_encoder.py +58 -0
  96. samsara/core/remove_none_from_dict.py +11 -0
  97. samsara/core/request_options.py +35 -0
  98. samsara/core/serialization.py +276 -0
  99. samsara/defect_types/__init__.py +4 -0
  100. samsara/defect_types/client.py +146 -0
  101. samsara/defect_types/raw_client.py +352 -0
  102. samsara/defects/__init__.py +4 -0
  103. samsara/defects/client.py +468 -0
  104. samsara/defects/raw_client.py +678 -0
  105. samsara/devices/__init__.py +4 -0
  106. samsara/devices/client.py +180 -0
  107. samsara/devices/raw_client.py +376 -0
  108. samsara/document_types/__init__.py +4 -0
  109. samsara/document_types/client.py +124 -0
  110. samsara/document_types/raw_client.py +326 -0
  111. samsara/documents/__init__.py +8 -0
  112. samsara/documents/client.py +534 -0
  113. samsara/documents/pdfs/__init__.py +4 -0
  114. samsara/documents/pdfs/client.py +206 -0
  115. samsara/documents/pdfs/raw_client.py +212 -0
  116. samsara/documents/raw_client.py +1327 -0
  117. samsara/documents/types/__init__.py +7 -0
  118. samsara/documents/types/documents_post_document_request_body_state.py +5 -0
  119. samsara/driver_trailer_assignments/__init__.py +4 -0
  120. samsara/driver_trailer_assignments/client.py +379 -0
  121. samsara/driver_trailer_assignments/raw_client.py +1009 -0
  122. samsara/driver_vehicle_assignments/__init__.py +7 -0
  123. samsara/driver_vehicle_assignments/client.py +701 -0
  124. samsara/driver_vehicle_assignments/raw_client.py +1520 -0
  125. samsara/driver_vehicle_assignments/types/__init__.py +8 -0
  126. samsara/driver_vehicle_assignments/types/driver_vehicle_assignments_get_request_assignment_type.py +10 -0
  127. samsara/driver_vehicle_assignments/types/driver_vehicle_assignments_get_request_filter_by.py +5 -0
  128. samsara/drivers/__init__.py +24 -0
  129. samsara/drivers/client.py +1171 -0
  130. samsara/drivers/qr_codes/__init__.py +4 -0
  131. samsara/drivers/qr_codes/client.py +304 -0
  132. samsara/drivers/qr_codes/raw_client.py +926 -0
  133. samsara/drivers/raw_client.py +1425 -0
  134. samsara/drivers/tachograph_activity/__init__.py +4 -0
  135. samsara/drivers/tachograph_activity/client.py +186 -0
  136. samsara/drivers/tachograph_activity/raw_client.py +169 -0
  137. samsara/drivers/tachograph_files/__init__.py +4 -0
  138. samsara/drivers/tachograph_files/client.py +190 -0
  139. samsara/drivers/tachograph_files/raw_client.py +173 -0
  140. samsara/drivers/types/__init__.py +15 -0
  141. samsara/drivers/types/create_driver_request_locale.py +7 -0
  142. samsara/drivers/types/drivers_list_request_driver_activation_status.py +5 -0
  143. samsara/drivers/types/update_driver_request_driver_activation_status.py +5 -0
  144. samsara/drivers/types/update_driver_request_locale.py +7 -0
  145. samsara/drivers/vehicle_assignments/__init__.py +7 -0
  146. samsara/drivers/vehicle_assignments/client.py +201 -0
  147. samsara/drivers/vehicle_assignments/raw_client.py +397 -0
  148. samsara/drivers/vehicle_assignments/types/__init__.py +9 -0
  149. samsara/drivers/vehicle_assignments/types/vehicle_assignments_list_request_driver_activation_status.py +5 -0
  150. samsara/dvirs/__init__.py +7 -0
  151. samsara/dvirs/client.py +660 -0
  152. samsara/dvirs/raw_client.py +873 -0
  153. samsara/dvirs/types/__init__.py +7 -0
  154. samsara/dvirs/types/create_dvir_request_safety_status.py +5 -0
  155. samsara/environment.py +8 -0
  156. samsara/equipment/__init__.py +14 -0
  157. samsara/equipment/client.py +239 -0
  158. samsara/equipment/locations/__init__.py +4 -0
  159. samsara/equipment/locations/client.py +439 -0
  160. samsara/equipment/locations/raw_client.py +438 -0
  161. samsara/equipment/raw_client.py +237 -0
  162. samsara/equipment/stats/__init__.py +7 -0
  163. samsara/equipment/stats/client.py +574 -0
  164. samsara/equipment/stats/raw_client.py +573 -0
  165. samsara/equipment/stats/types/__init__.py +9 -0
  166. samsara/equipment/stats/types/stats_feed_request_types_item.py +19 -0
  167. samsara/equipment/stats/types/stats_get_request_types_item.py +19 -0
  168. samsara/equipment/stats/types/stats_history_request_types_item.py +19 -0
  169. samsara/errors/__init__.py +25 -0
  170. samsara/errors/bad_gateway_error.py +10 -0
  171. samsara/errors/gateway_timeout_error.py +10 -0
  172. samsara/errors/internal_server_error.py +10 -0
  173. samsara/errors/method_not_allowed_error.py +10 -0
  174. samsara/errors/not_found_error.py +10 -0
  175. samsara/errors/not_implemented_error.py +10 -0
  176. samsara/errors/service_unavailable_error.py +10 -0
  177. samsara/errors/too_many_requests_error.py +10 -0
  178. samsara/errors/unauthorized_error.py +10 -0
  179. samsara/form_submissions/__init__.py +8 -0
  180. samsara/form_submissions/client.py +677 -0
  181. samsara/form_submissions/pdf_exports/__init__.py +4 -0
  182. samsara/form_submissions/pdf_exports/client.py +229 -0
  183. samsara/form_submissions/pdf_exports/raw_client.py +635 -0
  184. samsara/form_submissions/raw_client.py +1523 -0
  185. samsara/form_submissions/types/__init__.py +9 -0
  186. samsara/form_submissions/types/form_submissions_patch_form_submission_request_body_status.py +7 -0
  187. samsara/fuel_purchases/__init__.py +7 -0
  188. samsara/fuel_purchases/client.py +219 -0
  189. samsara/fuel_purchases/raw_client.py +410 -0
  190. samsara/fuel_purchases/types/__init__.py +9 -0
  191. samsara/fuel_purchases/types/fuel_purchase_post_fuel_purchase_request_body_ifta_fuel_type.py +25 -0
  192. samsara/gateways/__init__.py +4 -0
  193. samsara/gateways/client.py +312 -0
  194. samsara/gateways/raw_client.py +923 -0
  195. samsara/hos/__init__.py +4 -0
  196. samsara/hos/client.py +488 -0
  197. samsara/hos/raw_client.py +700 -0
  198. samsara/hours_of_service/__init__.py +7 -0
  199. samsara/hours_of_service/client.py +229 -0
  200. samsara/hours_of_service/raw_client.py +425 -0
  201. samsara/hours_of_service/types/__init__.py +9 -0
  202. samsara/hours_of_service/types/hours_of_service_get_daily_logs_request_driver_activation_status.py +7 -0
  203. samsara/ifta/__init__.py +7 -0
  204. samsara/ifta/client.py +39 -0
  205. samsara/ifta/csv/__init__.py +4 -0
  206. samsara/ifta/csv/client.py +274 -0
  207. samsara/ifta/csv/raw_client.py +675 -0
  208. samsara/ifta/raw_client.py +13 -0
  209. samsara/inputs/__init__.py +7 -0
  210. samsara/inputs/client.py +213 -0
  211. samsara/inputs/raw_client.py +403 -0
  212. samsara/inputs/types/__init__.py +7 -0
  213. samsara/inputs/types/inputs_stream_request_type.py +27 -0
  214. samsara/issues/__init__.py +7 -0
  215. samsara/issues/client.py +446 -0
  216. samsara/issues/raw_client.py +1067 -0
  217. samsara/issues/types/__init__.py +7 -0
  218. samsara/issues/types/issues_patch_issue_request_body_status.py +7 -0
  219. samsara/legacy/__init__.py +4 -0
  220. samsara/legacy/client.py +188 -0
  221. samsara/legacy/raw_client.py +384 -0
  222. samsara/live_shares/__init__.py +7 -0
  223. samsara/live_shares/client.py +536 -0
  224. samsara/live_shares/raw_client.py +1383 -0
  225. samsara/live_shares/types/__init__.py +10 -0
  226. samsara/live_shares/types/live_shares_list_request_type.py +7 -0
  227. samsara/live_shares/types/live_sharing_links_create_live_sharing_link_request_body_type.py +7 -0
  228. samsara/maintenance/__init__.py +24 -0
  229. samsara/maintenance/client.py +44 -0
  230. samsara/maintenance/raw_client.py +13 -0
  231. samsara/maintenance/service_tasks/__init__.py +4 -0
  232. samsara/maintenance/service_tasks/client.py +312 -0
  233. samsara/maintenance/service_tasks/raw_client.py +496 -0
  234. samsara/maintenance/work_orders/__init__.py +21 -0
  235. samsara/maintenance/work_orders/client.py +849 -0
  236. samsara/maintenance/work_orders/raw_client.py +1912 -0
  237. samsara/maintenance/work_orders/types/__init__.py +19 -0
  238. samsara/maintenance/work_orders/types/work_orders_patch_work_orders_request_body_category.py +7 -0
  239. samsara/maintenance/work_orders/types/work_orders_patch_work_orders_request_body_priority.py +7 -0
  240. samsara/maintenance/work_orders/types/work_orders_patch_work_orders_request_body_status.py +18 -0
  241. samsara/maintenance/work_orders/types/work_orders_post_work_orders_request_body_category.py +7 -0
  242. samsara/maintenance/work_orders/types/work_orders_post_work_orders_request_body_priority.py +7 -0
  243. samsara/maintenance/work_orders/types/work_orders_stream_request_work_order_statuses_item.py +18 -0
  244. samsara/me/__init__.py +4 -0
  245. samsara/me/client.py +108 -0
  246. samsara/me/raw_client.py +99 -0
  247. samsara/py.typed +0 -0
  248. samsara/reports/__init__.py +7 -0
  249. samsara/reports/client.py +49 -0
  250. samsara/reports/drivers/__init__.py +7 -0
  251. samsara/reports/drivers/client.py +39 -0
  252. samsara/reports/drivers/fuel_energy/__init__.py +4 -0
  253. samsara/reports/drivers/fuel_energy/client.py +194 -0
  254. samsara/reports/drivers/fuel_energy/raw_client.py +384 -0
  255. samsara/reports/drivers/raw_client.py +13 -0
  256. samsara/reports/ifta/__init__.py +18 -0
  257. samsara/reports/ifta/client.py +44 -0
  258. samsara/reports/ifta/jurisdiction/__init__.py +7 -0
  259. samsara/reports/ifta/jurisdiction/client.py +217 -0
  260. samsara/reports/ifta/jurisdiction/raw_client.py +409 -0
  261. samsara/reports/ifta/jurisdiction/types/__init__.py +9 -0
  262. samsara/reports/ifta/jurisdiction/types/jurisdiction_get_request_fuel_type.py +25 -0
  263. samsara/reports/ifta/jurisdiction/types/jurisdiction_get_request_month.py +21 -0
  264. samsara/reports/ifta/jurisdiction/types/jurisdiction_get_request_quarter.py +5 -0
  265. samsara/reports/ifta/raw_client.py +13 -0
  266. samsara/reports/ifta/vehicle/__init__.py +7 -0
  267. samsara/reports/ifta/vehicle/client.py +227 -0
  268. samsara/reports/ifta/vehicle/raw_client.py +419 -0
  269. samsara/reports/ifta/vehicle/types/__init__.py +9 -0
  270. samsara/reports/ifta/vehicle/types/vehicle_get_request_fuel_type.py +25 -0
  271. samsara/reports/ifta/vehicle/types/vehicle_get_request_month.py +21 -0
  272. samsara/reports/ifta/vehicle/types/vehicle_get_request_quarter.py +5 -0
  273. samsara/reports/raw_client.py +13 -0
  274. samsara/reports/vehicles/__init__.py +8 -0
  275. samsara/reports/vehicles/client.py +44 -0
  276. samsara/reports/vehicles/fuel_energy/__init__.py +7 -0
  277. samsara/reports/vehicles/fuel_energy/client.py +205 -0
  278. samsara/reports/vehicles/fuel_energy/raw_client.py +395 -0
  279. samsara/reports/vehicles/fuel_energy/types/__init__.py +7 -0
  280. samsara/reports/vehicles/fuel_energy/types/fuel_energy_get_request_energy_type.py +5 -0
  281. samsara/reports/vehicles/idling/__init__.py +4 -0
  282. samsara/reports/vehicles/idling/client.py +224 -0
  283. samsara/reports/vehicles/idling/raw_client.py +414 -0
  284. samsara/reports/vehicles/raw_client.py +13 -0
  285. samsara/routes/__init__.py +7 -0
  286. samsara/routes/audit_logs/__init__.py +4 -0
  287. samsara/routes/audit_logs/client.py +146 -0
  288. samsara/routes/audit_logs/raw_client.py +350 -0
  289. samsara/routes/client.py +700 -0
  290. samsara/routes/raw_client.py +1731 -0
  291. samsara/safety_events/__init__.py +7 -0
  292. samsara/safety_events/audit_logs/__init__.py +4 -0
  293. samsara/safety_events/audit_logs/client.py +152 -0
  294. samsara/safety_events/audit_logs/raw_client.py +356 -0
  295. samsara/safety_events/client.py +189 -0
  296. samsara/safety_events/raw_client.py +169 -0
  297. samsara/settings/__init__.py +7 -0
  298. samsara/settings/client.py +49 -0
  299. samsara/settings/compliance/__init__.py +4 -0
  300. samsara/settings/compliance/client.py +308 -0
  301. samsara/settings/compliance/raw_client.py +718 -0
  302. samsara/settings/driver_app/__init__.py +4 -0
  303. samsara/settings/driver_app/client.py +270 -0
  304. samsara/settings/driver_app/raw_client.py +697 -0
  305. samsara/settings/raw_client.py +13 -0
  306. samsara/settings/safety/__init__.py +4 -0
  307. samsara/settings/safety/client.py +118 -0
  308. samsara/settings/safety/raw_client.py +314 -0
  309. samsara/speeding_intervals/__init__.py +7 -0
  310. samsara/speeding_intervals/client.py +213 -0
  311. samsara/speeding_intervals/raw_client.py +405 -0
  312. samsara/speeding_intervals/types/__init__.py +7 -0
  313. samsara/speeding_intervals/types/speeding_intervals_stream_request_query_by.py +5 -0
  314. samsara/tags/__init__.py +4 -0
  315. samsara/tags/client.py +837 -0
  316. samsara/tags/raw_client.py +881 -0
  317. samsara/trailers/__init__.py +4 -0
  318. samsara/trailers/client.py +699 -0
  319. samsara/trailers/raw_client.py +1723 -0
  320. samsara/training_assignments/__init__.py +4 -0
  321. samsara/training_assignments/client.py +520 -0
  322. samsara/training_assignments/raw_client.py +1326 -0
  323. samsara/training_courses/__init__.py +4 -0
  324. samsara/training_courses/client.py +168 -0
  325. samsara/training_courses/raw_client.py +364 -0
  326. samsara/trips/__init__.py +7 -0
  327. samsara/trips/client.py +202 -0
  328. samsara/trips/raw_client.py +394 -0
  329. samsara/trips/types/__init__.py +8 -0
  330. samsara/trips/types/trips_stream_request_completion_status.py +5 -0
  331. samsara/trips/types/trips_stream_request_query_by.py +5 -0
  332. samsara/types/__init__.py +6031 -0
  333. samsara/types/accessory_response_object_response_body.py +31 -0
  334. samsara/types/action_object_request_body.py +39 -0
  335. samsara/types/action_object_response_body.py +39 -0
  336. samsara/types/action_params_object_request_body.py +36 -0
  337. samsara/types/action_params_object_response_body.py +36 -0
  338. samsara/types/address.py +91 -0
  339. samsara/types/address_address_types_item.py +10 -0
  340. samsara/types/address_geofence.py +28 -0
  341. samsara/types/address_geofence_circle.py +38 -0
  342. samsara/types/address_geofence_polygon.py +27 -0
  343. samsara/types/address_geofence_polygon_vertices.py +27 -0
  344. samsara/types/address_geofence_settings.py +30 -0
  345. samsara/types/address_response.py +24 -0
  346. samsara/types/address_response_response_body.py +69 -0
  347. samsara/types/address_tiny_response.py +31 -0
  348. samsara/types/alert_event.py +74 -0
  349. samsara/types/alert_event_alert_condition_id.py +40 -0
  350. samsara/types/alert_event_device.py +37 -0
  351. samsara/types/alert_event_driver.py +27 -0
  352. samsara/types/alert_event_dvir.py +52 -0
  353. samsara/types/alert_event_dvir_defects_item.py +44 -0
  354. samsara/types/alert_event_dvir_driver.py +27 -0
  355. samsara/types/alert_event_dvir_inspection_type.py +7 -0
  356. samsara/types/alert_event_dvir_safety_status.py +5 -0
  357. samsara/types/alert_event_dvir_trailer.py +27 -0
  358. samsara/types/alert_event_dvir_vehicle.py +27 -0
  359. samsara/types/alert_object_driver_response_body.py +52 -0
  360. samsara/types/alert_object_machine_input_response_body.py +31 -0
  361. samsara/types/alert_object_onvif_camera_stream_response_body.py +43 -0
  362. samsara/types/alert_object_product_response_body.py +30 -0
  363. samsara/types/alert_object_sensor_response_body.py +48 -0
  364. samsara/types/alert_object_sites_response_body.py +37 -0
  365. samsara/types/alert_object_trailer_response_body.py +59 -0
  366. samsara/types/alert_object_vehicle_response_body.py +61 -0
  367. samsara/types/alert_object_workforce_camera_device_response_body.py +43 -0
  368. samsara/types/alerts_delete_configurations_bad_gateway_error_response_body.py +33 -0
  369. samsara/types/alerts_delete_configurations_gateway_timeout_error_response_body.py +33 -0
  370. samsara/types/alerts_delete_configurations_internal_server_error_response_body.py +33 -0
  371. samsara/types/alerts_delete_configurations_method_not_allowed_error_response_body.py +33 -0
  372. samsara/types/alerts_delete_configurations_not_found_error_response_body.py +33 -0
  373. samsara/types/alerts_delete_configurations_not_implemented_error_response_body.py +33 -0
  374. samsara/types/alerts_delete_configurations_service_unavailable_error_response_body.py +33 -0
  375. samsara/types/alerts_delete_configurations_too_many_requests_error_response_body.py +33 -0
  376. samsara/types/alerts_delete_configurations_unauthorized_error_response_body.py +33 -0
  377. samsara/types/alerts_get_configurations_bad_gateway_error_response_body.py +33 -0
  378. samsara/types/alerts_get_configurations_gateway_timeout_error_response_body.py +33 -0
  379. samsara/types/alerts_get_configurations_internal_server_error_response_body.py +33 -0
  380. samsara/types/alerts_get_configurations_method_not_allowed_error_response_body.py +33 -0
  381. samsara/types/alerts_get_configurations_not_found_error_response_body.py +33 -0
  382. samsara/types/alerts_get_configurations_not_implemented_error_response_body.py +33 -0
  383. samsara/types/alerts_get_configurations_response_body.py +26 -0
  384. samsara/types/alerts_get_configurations_service_unavailable_error_response_body.py +33 -0
  385. samsara/types/alerts_get_configurations_too_many_requests_error_response_body.py +33 -0
  386. samsara/types/alerts_get_configurations_unauthorized_error_response_body.py +33 -0
  387. samsara/types/alerts_get_incidents_bad_gateway_error_response_body.py +33 -0
  388. samsara/types/alerts_get_incidents_gateway_timeout_error_response_body.py +33 -0
  389. samsara/types/alerts_get_incidents_internal_server_error_response_body.py +33 -0
  390. samsara/types/alerts_get_incidents_method_not_allowed_error_response_body.py +33 -0
  391. samsara/types/alerts_get_incidents_not_found_error_response_body.py +33 -0
  392. samsara/types/alerts_get_incidents_not_implemented_error_response_body.py +33 -0
  393. samsara/types/alerts_get_incidents_response_body.py +26 -0
  394. samsara/types/alerts_get_incidents_service_unavailable_error_response_body.py +33 -0
  395. samsara/types/alerts_get_incidents_too_many_requests_error_response_body.py +33 -0
  396. samsara/types/alerts_get_incidents_unauthorized_error_response_body.py +33 -0
  397. samsara/types/alerts_patch_configurations_bad_gateway_error_response_body.py +33 -0
  398. samsara/types/alerts_patch_configurations_gateway_timeout_error_response_body.py +33 -0
  399. samsara/types/alerts_patch_configurations_internal_server_error_response_body.py +33 -0
  400. samsara/types/alerts_patch_configurations_method_not_allowed_error_response_body.py +33 -0
  401. samsara/types/alerts_patch_configurations_not_found_error_response_body.py +33 -0
  402. samsara/types/alerts_patch_configurations_not_implemented_error_response_body.py +33 -0
  403. samsara/types/alerts_patch_configurations_response_body.py +22 -0
  404. samsara/types/alerts_patch_configurations_service_unavailable_error_response_body.py +33 -0
  405. samsara/types/alerts_patch_configurations_too_many_requests_error_response_body.py +33 -0
  406. samsara/types/alerts_patch_configurations_unauthorized_error_response_body.py +33 -0
  407. samsara/types/alerts_post_configurations_bad_gateway_error_response_body.py +33 -0
  408. samsara/types/alerts_post_configurations_gateway_timeout_error_response_body.py +33 -0
  409. samsara/types/alerts_post_configurations_internal_server_error_response_body.py +33 -0
  410. samsara/types/alerts_post_configurations_method_not_allowed_error_response_body.py +33 -0
  411. samsara/types/alerts_post_configurations_not_found_error_response_body.py +33 -0
  412. samsara/types/alerts_post_configurations_not_implemented_error_response_body.py +33 -0
  413. samsara/types/alerts_post_configurations_response_body.py +22 -0
  414. samsara/types/alerts_post_configurations_service_unavailable_error_response_body.py +33 -0
  415. samsara/types/alerts_post_configurations_too_many_requests_error_response_body.py +33 -0
  416. samsara/types/alerts_post_configurations_unauthorized_error_response_body.py +33 -0
  417. samsara/types/ambient_temperature_details_object_request_body.py +57 -0
  418. samsara/types/ambient_temperature_details_object_request_body_operation.py +7 -0
  419. samsara/types/ambient_temperature_details_object_response_body.py +57 -0
  420. samsara/types/ambient_temperature_details_object_response_body_operation.py +7 -0
  421. samsara/types/ambient_temperature_response_body.py +24 -0
  422. samsara/types/asset_location_heading.py +3 -0
  423. samsara/types/asset_location_speed.py +3 -0
  424. samsara/types/asset_response_body.py +109 -0
  425. samsara/types/asset_response_body_regulation_mode.py +5 -0
  426. samsara/types/asset_response_body_type.py +7 -0
  427. samsara/types/asset_response_response_body.py +35 -0
  428. samsara/types/assets_create_asset_bad_gateway_error_response_body.py +33 -0
  429. samsara/types/assets_create_asset_gateway_timeout_error_response_body.py +33 -0
  430. samsara/types/assets_create_asset_internal_server_error_response_body.py +33 -0
  431. samsara/types/assets_create_asset_method_not_allowed_error_response_body.py +33 -0
  432. samsara/types/assets_create_asset_not_found_error_response_body.py +33 -0
  433. samsara/types/assets_create_asset_not_implemented_error_response_body.py +33 -0
  434. samsara/types/assets_create_asset_response_body.py +105 -0
  435. samsara/types/assets_create_asset_response_body_regulation_mode.py +7 -0
  436. samsara/types/assets_create_asset_response_body_type.py +7 -0
  437. samsara/types/assets_create_asset_service_unavailable_error_response_body.py +33 -0
  438. samsara/types/assets_create_asset_too_many_requests_error_response_body.py +33 -0
  439. samsara/types/assets_create_asset_unauthorized_error_response_body.py +33 -0
  440. samsara/types/assets_delete_asset_bad_gateway_error_response_body.py +33 -0
  441. samsara/types/assets_delete_asset_gateway_timeout_error_response_body.py +33 -0
  442. samsara/types/assets_delete_asset_internal_server_error_response_body.py +33 -0
  443. samsara/types/assets_delete_asset_method_not_allowed_error_response_body.py +33 -0
  444. samsara/types/assets_delete_asset_not_found_error_response_body.py +33 -0
  445. samsara/types/assets_delete_asset_not_implemented_error_response_body.py +33 -0
  446. samsara/types/assets_delete_asset_service_unavailable_error_response_body.py +33 -0
  447. samsara/types/assets_delete_asset_too_many_requests_error_response_body.py +33 -0
  448. samsara/types/assets_delete_asset_unauthorized_error_response_body.py +33 -0
  449. samsara/types/assets_inputs_asset_response_response_body.py +47 -0
  450. samsara/types/assets_inputs_aux_input_response_body.py +26 -0
  451. samsara/types/assets_inputs_get_assets_inputs_bad_gateway_error_response_body.py +33 -0
  452. samsara/types/assets_inputs_get_assets_inputs_gateway_timeout_error_response_body.py +33 -0
  453. samsara/types/assets_inputs_get_assets_inputs_internal_server_error_response_body.py +33 -0
  454. samsara/types/assets_inputs_get_assets_inputs_method_not_allowed_error_response_body.py +33 -0
  455. samsara/types/assets_inputs_get_assets_inputs_not_found_error_response_body.py +33 -0
  456. samsara/types/assets_inputs_get_assets_inputs_not_implemented_error_response_body.py +33 -0
  457. samsara/types/assets_inputs_get_assets_inputs_response_body.py +26 -0
  458. samsara/types/assets_inputs_get_assets_inputs_service_unavailable_error_response_body.py +33 -0
  459. samsara/types/assets_inputs_get_assets_inputs_too_many_requests_error_response_body.py +33 -0
  460. samsara/types/assets_inputs_get_assets_inputs_unauthorized_error_response_body.py +33 -0
  461. samsara/types/assets_inputs_response_response_body.py +45 -0
  462. samsara/types/assets_inputs_response_response_body_units.py +5 -0
  463. samsara/types/assets_list_assets_bad_gateway_error_response_body.py +33 -0
  464. samsara/types/assets_list_assets_gateway_timeout_error_response_body.py +33 -0
  465. samsara/types/assets_list_assets_internal_server_error_response_body.py +33 -0
  466. samsara/types/assets_list_assets_method_not_allowed_error_response_body.py +33 -0
  467. samsara/types/assets_list_assets_not_found_error_response_body.py +33 -0
  468. samsara/types/assets_list_assets_not_implemented_error_response_body.py +33 -0
  469. samsara/types/assets_list_assets_response_body.py +26 -0
  470. samsara/types/assets_list_assets_service_unavailable_error_response_body.py +33 -0
  471. samsara/types/assets_list_assets_too_many_requests_error_response_body.py +33 -0
  472. samsara/types/assets_list_assets_unauthorized_error_response_body.py +33 -0
  473. samsara/types/assets_location_link_config_address_details_object.py +43 -0
  474. samsara/types/assets_location_link_config_address_details_object_response_body.py +43 -0
  475. samsara/types/assets_location_link_config_object.py +31 -0
  476. samsara/types/assets_location_link_config_object_response_body.py +33 -0
  477. samsara/types/assets_near_location_link_config_object.py +28 -0
  478. samsara/types/assets_near_location_link_config_object_response_body.py +28 -0
  479. samsara/types/assets_on_route_link_config_object.py +28 -0
  480. samsara/types/assets_on_route_link_config_object_response_body.py +28 -0
  481. samsara/types/assets_update_asset_bad_gateway_error_response_body.py +33 -0
  482. samsara/types/assets_update_asset_gateway_timeout_error_response_body.py +33 -0
  483. samsara/types/assets_update_asset_internal_server_error_response_body.py +33 -0
  484. samsara/types/assets_update_asset_method_not_allowed_error_response_body.py +33 -0
  485. samsara/types/assets_update_asset_not_found_error_response_body.py +33 -0
  486. samsara/types/assets_update_asset_not_implemented_error_response_body.py +33 -0
  487. samsara/types/assets_update_asset_response_body.py +105 -0
  488. samsara/types/assets_update_asset_response_body_regulation_mode.py +7 -0
  489. samsara/types/assets_update_asset_response_body_type.py +7 -0
  490. samsara/types/assets_update_asset_service_unavailable_error_response_body.py +33 -0
  491. samsara/types/assets_update_asset_too_many_requests_error_response_body.py +33 -0
  492. samsara/types/assets_update_asset_unauthorized_error_response_body.py +33 -0
  493. samsara/types/attribute.py +73 -0
  494. samsara/types/attribute_attribute_type.py +5 -0
  495. samsara/types/attribute_attribute_value_quantity.py +5 -0
  496. samsara/types/attribute_entity.py +49 -0
  497. samsara/types/attribute_entity_external_ids.py +21 -0
  498. samsara/types/attribute_entity_type.py +5 -0
  499. samsara/types/attribute_expanded.py +19 -0
  500. samsara/types/attribute_expanded_all_of.py +23 -0
  501. samsara/types/attribute_expanded_response.py +20 -0
  502. samsara/types/attribute_tiny.py +47 -0
  503. samsara/types/attribute_value_tiny.py +35 -0
  504. samsara/types/author_signature_object_response_body.py +36 -0
  505. samsara/types/author_signature_object_response_body_type.py +5 -0
  506. samsara/types/barcode_value_object_request_body.py +33 -0
  507. samsara/types/barcode_value_object_response_body.py +33 -0
  508. samsara/types/base_route_response_object_response_body.py +99 -0
  509. samsara/types/behavior_response_body.py +62 -0
  510. samsara/types/behavior_response_body_coachable_behavior_type.py +51 -0
  511. samsara/types/camera_connector_disconected_response_body.py +28 -0
  512. samsara/types/camera_details_response_response_body.py +45 -0
  513. samsara/types/camera_serial.py +3 -0
  514. samsara/types/camera_stream_issue_response_body.py +28 -0
  515. samsara/types/carrier_proposed_assignment.py +50 -0
  516. samsara/types/carrier_proposed_assignment_accepted_time.py +3 -0
  517. samsara/types/carrier_proposed_assignment_active_time.py +3 -0
  518. samsara/types/carrier_proposed_assignment_driver.py +19 -0
  519. samsara/types/carrier_proposed_assignment_driver_all_of.py +24 -0
  520. samsara/types/carrier_proposed_assignment_driver_all_of_2_external_ids.py +5 -0
  521. samsara/types/carrier_proposed_assignment_first_seen_time.py +3 -0
  522. samsara/types/carrier_proposed_assignment_id.py +3 -0
  523. samsara/types/carrier_proposed_assignment_rejected_time.py +3 -0
  524. samsara/types/carrier_proposed_assignment_response.py +24 -0
  525. samsara/types/carrier_proposed_assignment_shipping_docs.py +3 -0
  526. samsara/types/carrier_proposed_assignment_trailer.py +19 -0
  527. samsara/types/carrier_proposed_assignment_trailers.py +7 -0
  528. samsara/types/carrier_proposed_assignment_vehicle.py +18 -0
  529. samsara/types/cell_connectivity_response_response_body.py +36 -0
  530. samsara/types/cell_connectivity_response_response_body_signal_bar.py +7 -0
  531. samsara/types/cell_signal_loss_details_object_request_body.py +30 -0
  532. samsara/types/cell_signal_loss_details_object_response_body.py +30 -0
  533. samsara/types/cell_signal_loss_response_body.py +28 -0
  534. samsara/types/circle_request_body.py +43 -0
  535. samsara/types/circle_response_body.py +43 -0
  536. samsara/types/cloud_backup_upload_issue_response_body.py +28 -0
  537. samsara/types/coach_assignment_with_driver_external_ids_response_response_body.py +41 -0
  538. samsara/types/coach_assignment_without_driver_external_ids_response_response_body.py +46 -0
  539. samsara/types/coachable_event_response_body.py +26 -0
  540. samsara/types/coaching_sessions_get_coaching_sessions_bad_gateway_error_response_body.py +33 -0
  541. samsara/types/coaching_sessions_get_coaching_sessions_gateway_timeout_error_response_body.py +33 -0
  542. samsara/types/coaching_sessions_get_coaching_sessions_internal_server_error_response_body.py +33 -0
  543. samsara/types/coaching_sessions_get_coaching_sessions_method_not_allowed_error_response_body.py +33 -0
  544. samsara/types/coaching_sessions_get_coaching_sessions_not_found_error_response_body.py +33 -0
  545. samsara/types/coaching_sessions_get_coaching_sessions_not_implemented_error_response_body.py +33 -0
  546. samsara/types/coaching_sessions_get_coaching_sessions_response_body.py +26 -0
  547. samsara/types/coaching_sessions_get_coaching_sessions_service_unavailable_error_response_body.py +33 -0
  548. samsara/types/coaching_sessions_get_coaching_sessions_too_many_requests_error_response_body.py +33 -0
  549. samsara/types/coaching_sessions_get_coaching_sessions_unauthorized_error_response_body.py +33 -0
  550. samsara/types/coaching_sessions_response_response_body.py +91 -0
  551. samsara/types/coaching_sessions_response_response_body_coaching_type.py +7 -0
  552. samsara/types/coaching_sessions_response_response_body_session_status.py +7 -0
  553. samsara/types/conditional_field_section_object_response_body.py +47 -0
  554. samsara/types/connection_status_response_object_response_body.py +40 -0
  555. samsara/types/connection_status_response_object_response_body_health_status.py +35 -0
  556. samsara/types/contact.py +34 -0
  557. samsara/types/contact_email.py +3 -0
  558. samsara/types/contact_first_name.py +3 -0
  559. samsara/types/contact_id.py +3 -0
  560. samsara/types/contact_last_name.py +3 -0
  561. samsara/types/contact_phone.py +3 -0
  562. samsara/types/contact_response.py +24 -0
  563. samsara/types/contact_tiny_response.py +42 -0
  564. samsara/types/create_address_request_geofence.py +28 -0
  565. samsara/types/create_address_request_geofence_settings.py +30 -0
  566. samsara/types/create_attribute_request_entities.py +47 -0
  567. samsara/types/create_driver_request_attributes.py +47 -0
  568. samsara/types/create_routes_stop_request_object_request_body.py +77 -0
  569. samsara/types/create_user_request_roles.py +35 -0
  570. samsara/types/current_duty_status.py +31 -0
  571. samsara/types/current_duty_status_hos_status_type.py +7 -0
  572. samsara/types/custom_headers_object_request_body.py +31 -0
  573. samsara/types/custom_headers_object_response_body.py +31 -0
  574. samsara/types/dashcam_disconnected_response_body.py +28 -0
  575. samsara/types/data_input_value_response_body.py +28 -0
  576. samsara/types/data_usage_response_object_response_body.py +37 -0
  577. samsara/types/date_time_value_object_request_body.py +31 -0
  578. samsara/types/date_time_value_object_response_body.py +31 -0
  579. samsara/types/def_level_trigger_details_object_request_body.py +41 -0
  580. samsara/types/def_level_trigger_details_object_request_body_operation.py +5 -0
  581. samsara/types/def_level_trigger_details_object_response_body.py +41 -0
  582. samsara/types/def_level_trigger_details_object_response_body_operation.py +5 -0
  583. samsara/types/defect.py +78 -0
  584. samsara/types/defect_photo_response_response_body.py +33 -0
  585. samsara/types/defect_resolved_by.py +37 -0
  586. samsara/types/defect_resolved_by_type.py +5 -0
  587. samsara/types/defect_response.py +24 -0
  588. samsara/types/defect_trailer.py +18 -0
  589. samsara/types/defect_trailer_response_response_body.py +35 -0
  590. samsara/types/defect_types_response_data_response_body.py +46 -0
  591. samsara/types/defect_types_response_data_response_body_section_type.py +16 -0
  592. samsara/types/defect_vehicle.py +18 -0
  593. samsara/types/defect_vehicle_response_response_body.py +35 -0
  594. samsara/types/defects_response.py +26 -0
  595. samsara/types/defects_response_data_response_body.py +95 -0
  596. samsara/types/device_asset_response_response_body.py +31 -0
  597. samsara/types/device_movement_data_response_body.py +28 -0
  598. samsara/types/device_movement_stopped_data_response_body.py +28 -0
  599. samsara/types/device_movement_trigger_details_object_request_body.py +30 -0
  600. samsara/types/device_movement_trigger_details_object_response_body.py +30 -0
  601. samsara/types/device_response_response_body.py +50 -0
  602. samsara/types/device_response_response_body_model.py +37 -0
  603. samsara/types/devices_get_devices_bad_gateway_error_response_body.py +33 -0
  604. samsara/types/devices_get_devices_gateway_timeout_error_response_body.py +33 -0
  605. samsara/types/devices_get_devices_internal_server_error_response_body.py +33 -0
  606. samsara/types/devices_get_devices_method_not_allowed_error_response_body.py +33 -0
  607. samsara/types/devices_get_devices_not_found_error_response_body.py +33 -0
  608. samsara/types/devices_get_devices_not_implemented_error_response_body.py +33 -0
  609. samsara/types/devices_get_devices_response_body.py +26 -0
  610. samsara/types/devices_get_devices_service_unavailable_error_response_body.py +33 -0
  611. samsara/types/devices_get_devices_too_many_requests_error_response_body.py +33 -0
  612. samsara/types/devices_get_devices_unauthorized_error_response_body.py +33 -0
  613. samsara/types/distance_traveled_object_response_body.py +44 -0
  614. samsara/types/distracted_driving_detection_alert_settings_object_response_body.py +45 -0
  615. samsara/types/document_pdf_generation_response.py +24 -0
  616. samsara/types/document_pdf_generation_response_data.py +31 -0
  617. samsara/types/document_pdf_query_response.py +24 -0
  618. samsara/types/document_pdf_query_response_data.py +60 -0
  619. samsara/types/document_pdf_query_response_data_job_status.py +5 -0
  620. samsara/types/document_response_object_response_body.py +87 -0
  621. samsara/types/document_response_object_response_body_state.py +5 -0
  622. samsara/types/document_types_get_document_types_bad_gateway_error_response_body.py +33 -0
  623. samsara/types/document_types_get_document_types_gateway_timeout_error_response_body.py +33 -0
  624. samsara/types/document_types_get_document_types_internal_server_error_response_body.py +33 -0
  625. samsara/types/document_types_get_document_types_method_not_allowed_error_response_body.py +33 -0
  626. samsara/types/document_types_get_document_types_not_found_error_response_body.py +33 -0
  627. samsara/types/document_types_get_document_types_not_implemented_error_response_body.py +33 -0
  628. samsara/types/document_types_get_document_types_response_body.py +26 -0
  629. samsara/types/document_types_get_document_types_service_unavailable_error_response_body.py +33 -0
  630. samsara/types/document_types_get_document_types_too_many_requests_error_response_body.py +33 -0
  631. samsara/types/document_types_get_document_types_unauthorized_error_response_body.py +33 -0
  632. samsara/types/documents_delete_document_bad_gateway_error_response_body.py +33 -0
  633. samsara/types/documents_delete_document_gateway_timeout_error_response_body.py +33 -0
  634. samsara/types/documents_delete_document_internal_server_error_response_body.py +33 -0
  635. samsara/types/documents_delete_document_method_not_allowed_error_response_body.py +33 -0
  636. samsara/types/documents_delete_document_not_found_error_response_body.py +33 -0
  637. samsara/types/documents_delete_document_not_implemented_error_response_body.py +33 -0
  638. samsara/types/documents_delete_document_service_unavailable_error_response_body.py +33 -0
  639. samsara/types/documents_delete_document_too_many_requests_error_response_body.py +33 -0
  640. samsara/types/documents_delete_document_unauthorized_error_response_body.py +33 -0
  641. samsara/types/documents_get_document_bad_gateway_error_response_body.py +33 -0
  642. samsara/types/documents_get_document_gateway_timeout_error_response_body.py +33 -0
  643. samsara/types/documents_get_document_internal_server_error_response_body.py +33 -0
  644. samsara/types/documents_get_document_method_not_allowed_error_response_body.py +33 -0
  645. samsara/types/documents_get_document_not_found_error_response_body.py +33 -0
  646. samsara/types/documents_get_document_not_implemented_error_response_body.py +33 -0
  647. samsara/types/documents_get_document_response_body.py +20 -0
  648. samsara/types/documents_get_document_service_unavailable_error_response_body.py +33 -0
  649. samsara/types/documents_get_document_too_many_requests_error_response_body.py +33 -0
  650. samsara/types/documents_get_document_unauthorized_error_response_body.py +33 -0
  651. samsara/types/documents_get_documents_bad_gateway_error_response_body.py +33 -0
  652. samsara/types/documents_get_documents_gateway_timeout_error_response_body.py +33 -0
  653. samsara/types/documents_get_documents_internal_server_error_response_body.py +33 -0
  654. samsara/types/documents_get_documents_method_not_allowed_error_response_body.py +33 -0
  655. samsara/types/documents_get_documents_not_found_error_response_body.py +33 -0
  656. samsara/types/documents_get_documents_not_implemented_error_response_body.py +33 -0
  657. samsara/types/documents_get_documents_response_body.py +26 -0
  658. samsara/types/documents_get_documents_service_unavailable_error_response_body.py +33 -0
  659. samsara/types/documents_get_documents_too_many_requests_error_response_body.py +33 -0
  660. samsara/types/documents_get_documents_unauthorized_error_response_body.py +33 -0
  661. samsara/types/documents_post_document_bad_gateway_error_response_body.py +33 -0
  662. samsara/types/documents_post_document_gateway_timeout_error_response_body.py +33 -0
  663. samsara/types/documents_post_document_internal_server_error_response_body.py +33 -0
  664. samsara/types/documents_post_document_method_not_allowed_error_response_body.py +33 -0
  665. samsara/types/documents_post_document_not_found_error_response_body.py +33 -0
  666. samsara/types/documents_post_document_not_implemented_error_response_body.py +33 -0
  667. samsara/types/documents_post_document_response_body.py +20 -0
  668. samsara/types/documents_post_document_service_unavailable_error_response_body.py +33 -0
  669. samsara/types/documents_post_document_too_many_requests_error_response_body.py +33 -0
  670. samsara/types/documents_post_document_unauthorized_error_response_body.py +33 -0
  671. samsara/types/driver.py +141 -0
  672. samsara/types/driver_activation_status.py +5 -0
  673. samsara/types/driver_app_notification_object_request_body.py +32 -0
  674. samsara/types/driver_app_notification_object_response_body.py +32 -0
  675. samsara/types/driver_app_settings_gamification_config_tiny_object_request_body.py +30 -0
  676. samsara/types/driver_app_settings_gamification_config_tiny_object_response_body.py +30 -0
  677. samsara/types/driver_app_settings_response_object_response_body.py +64 -0
  678. samsara/types/driver_app_settings_trailer_selection_config_tiny_object_request_body.py +44 -0
  679. samsara/types/driver_app_settings_trailer_selection_config_tiny_object_response_body.py +44 -0
  680. samsara/types/driver_app_sign_in_response_body.py +24 -0
  681. samsara/types/driver_app_sign_out_response_body.py +24 -0
  682. samsara/types/driver_assignment_metadata_tiny_object_response_body.py +30 -0
  683. samsara/types/driver_assignment_object_response_body.py +49 -0
  684. samsara/types/driver_carrier_settings.py +52 -0
  685. samsara/types/driver_coach_assignments_get_driver_coach_assignment_bad_gateway_error_response_body.py +33 -0
  686. samsara/types/driver_coach_assignments_get_driver_coach_assignment_gateway_timeout_error_response_body.py +33 -0
  687. samsara/types/driver_coach_assignments_get_driver_coach_assignment_internal_server_error_response_body.py +33 -0
  688. samsara/types/driver_coach_assignments_get_driver_coach_assignment_method_not_allowed_error_response_body.py +33 -0
  689. samsara/types/driver_coach_assignments_get_driver_coach_assignment_not_found_error_response_body.py +33 -0
  690. samsara/types/driver_coach_assignments_get_driver_coach_assignment_not_implemented_error_response_body.py +33 -0
  691. samsara/types/driver_coach_assignments_get_driver_coach_assignment_response_body.py +28 -0
  692. samsara/types/driver_coach_assignments_get_driver_coach_assignment_service_unavailable_error_response_body.py +33 -0
  693. samsara/types/driver_coach_assignments_get_driver_coach_assignment_too_many_requests_error_response_body.py +33 -0
  694. samsara/types/driver_coach_assignments_get_driver_coach_assignment_unauthorized_error_response_body.py +33 -0
  695. samsara/types/driver_coach_assignments_put_driver_coach_assignment_bad_gateway_error_response_body.py +33 -0
  696. samsara/types/driver_coach_assignments_put_driver_coach_assignment_gateway_timeout_error_response_body.py +33 -0
  697. samsara/types/driver_coach_assignments_put_driver_coach_assignment_internal_server_error_response_body.py +33 -0
  698. samsara/types/driver_coach_assignments_put_driver_coach_assignment_method_not_allowed_error_response_body.py +33 -0
  699. samsara/types/driver_coach_assignments_put_driver_coach_assignment_not_found_error_response_body.py +33 -0
  700. samsara/types/driver_coach_assignments_put_driver_coach_assignment_not_implemented_error_response_body.py +33 -0
  701. samsara/types/driver_coach_assignments_put_driver_coach_assignment_response_body.py +22 -0
  702. samsara/types/driver_coach_assignments_put_driver_coach_assignment_service_unavailable_error_response_body.py +33 -0
  703. samsara/types/driver_coach_assignments_put_driver_coach_assignment_too_many_requests_error_response_body.py +33 -0
  704. samsara/types/driver_coach_assignments_put_driver_coach_assignment_unauthorized_error_response_body.py +33 -0
  705. samsara/types/driver_created_at_time.py +3 -0
  706. samsara/types/driver_document_submitted_details_object_request_body.py +28 -0
  707. samsara/types/driver_document_submitted_details_object_response_body.py +28 -0
  708. samsara/types/driver_document_submitted_response_body.py +24 -0
  709. samsara/types/driver_eld_adverse_weather_exemption_enabled.py +3 -0
  710. samsara/types/driver_eld_big_day_exemption_enabled.py +3 -0
  711. samsara/types/driver_eld_day_start_hour.py +3 -0
  712. samsara/types/driver_eld_exempt.py +3 -0
  713. samsara/types/driver_eld_exempt_reason.py +3 -0
  714. samsara/types/driver_eld_pc_enabled.py +3 -0
  715. samsara/types/driver_eld_ruleset.py +34 -0
  716. samsara/types/driver_eld_ruleset_cycle.py +34 -0
  717. samsara/types/driver_eld_ruleset_jurisdiction.py +3 -0
  718. samsara/types/driver_eld_ruleset_rest_break.py +7 -0
  719. samsara/types/driver_eld_ruleset_restart.py +7 -0
  720. samsara/types/driver_eld_ruleset_shift.py +7 -0
  721. samsara/types/driver_eld_rulesets.py +7 -0
  722. samsara/types/driver_eld_settings.py +24 -0
  723. samsara/types/driver_eld_ym_enabled.py +3 -0
  724. samsara/types/driver_external_ids.py +5 -0
  725. samsara/types/driver_has_driving_features_hidden.py +3 -0
  726. samsara/types/driver_heavy_haul_exemption_toggle_enabled.py +3 -0
  727. samsara/types/driver_home_terminal_address.py +3 -0
  728. samsara/types/driver_home_terminal_name.py +3 -0
  729. samsara/types/driver_hos_setting.py +28 -0
  730. samsara/types/driver_id.py +3 -0
  731. samsara/types/driver_id_card_code.py +3 -0
  732. samsara/types/driver_is_deactivated.py +3 -0
  733. samsara/types/driver_license_number.py +3 -0
  734. samsara/types/driver_license_state.py +3 -0
  735. samsara/types/driver_locale.py +7 -0
  736. samsara/types/driver_message_received_response_body.py +24 -0
  737. samsara/types/driver_message_sent_response_body.py +24 -0
  738. samsara/types/driver_name.py +3 -0
  739. samsara/types/driver_notes.py +3 -0
  740. samsara/types/driver_object_response_body.py +31 -0
  741. samsara/types/driver_phone.py +3 -0
  742. samsara/types/driver_qr_codes_create_driver_qr_code_bad_gateway_error_response_body.py +33 -0
  743. samsara/types/driver_qr_codes_create_driver_qr_code_gateway_timeout_error_response_body.py +33 -0
  744. samsara/types/driver_qr_codes_create_driver_qr_code_internal_server_error_response_body.py +33 -0
  745. samsara/types/driver_qr_codes_create_driver_qr_code_method_not_allowed_error_response_body.py +33 -0
  746. samsara/types/driver_qr_codes_create_driver_qr_code_not_found_error_response_body.py +33 -0
  747. samsara/types/driver_qr_codes_create_driver_qr_code_not_implemented_error_response_body.py +33 -0
  748. samsara/types/driver_qr_codes_create_driver_qr_code_response_body.py +20 -0
  749. samsara/types/driver_qr_codes_create_driver_qr_code_service_unavailable_error_response_body.py +33 -0
  750. samsara/types/driver_qr_codes_create_driver_qr_code_too_many_requests_error_response_body.py +33 -0
  751. samsara/types/driver_qr_codes_create_driver_qr_code_unauthorized_error_response_body.py +33 -0
  752. samsara/types/driver_qr_codes_delete_driver_qr_code_bad_gateway_error_response_body.py +33 -0
  753. samsara/types/driver_qr_codes_delete_driver_qr_code_gateway_timeout_error_response_body.py +33 -0
  754. samsara/types/driver_qr_codes_delete_driver_qr_code_internal_server_error_response_body.py +33 -0
  755. samsara/types/driver_qr_codes_delete_driver_qr_code_method_not_allowed_error_response_body.py +33 -0
  756. samsara/types/driver_qr_codes_delete_driver_qr_code_not_found_error_response_body.py +33 -0
  757. samsara/types/driver_qr_codes_delete_driver_qr_code_not_implemented_error_response_body.py +33 -0
  758. samsara/types/driver_qr_codes_delete_driver_qr_code_service_unavailable_error_response_body.py +33 -0
  759. samsara/types/driver_qr_codes_delete_driver_qr_code_too_many_requests_error_response_body.py +33 -0
  760. samsara/types/driver_qr_codes_delete_driver_qr_code_unauthorized_error_response_body.py +33 -0
  761. samsara/types/driver_qr_codes_get_drivers_qr_codes_bad_gateway_error_response_body.py +33 -0
  762. samsara/types/driver_qr_codes_get_drivers_qr_codes_gateway_timeout_error_response_body.py +33 -0
  763. samsara/types/driver_qr_codes_get_drivers_qr_codes_internal_server_error_response_body.py +33 -0
  764. samsara/types/driver_qr_codes_get_drivers_qr_codes_method_not_allowed_error_response_body.py +33 -0
  765. samsara/types/driver_qr_codes_get_drivers_qr_codes_not_found_error_response_body.py +33 -0
  766. samsara/types/driver_qr_codes_get_drivers_qr_codes_not_implemented_error_response_body.py +33 -0
  767. samsara/types/driver_qr_codes_get_drivers_qr_codes_response_body.py +23 -0
  768. samsara/types/driver_qr_codes_get_drivers_qr_codes_service_unavailable_error_response_body.py +33 -0
  769. samsara/types/driver_qr_codes_get_drivers_qr_codes_too_many_requests_error_response_body.py +33 -0
  770. samsara/types/driver_qr_codes_get_drivers_qr_codes_unauthorized_error_response_body.py +33 -0
  771. samsara/types/driver_recorded_response_body.py +26 -0
  772. samsara/types/driver_remote_signout_post_driver_remote_signout_bad_gateway_error_response_body.py +33 -0
  773. samsara/types/driver_remote_signout_post_driver_remote_signout_gateway_timeout_error_response_body.py +33 -0
  774. samsara/types/driver_remote_signout_post_driver_remote_signout_internal_server_error_response_body.py +33 -0
  775. samsara/types/driver_remote_signout_post_driver_remote_signout_method_not_allowed_error_response_body.py +33 -0
  776. samsara/types/driver_remote_signout_post_driver_remote_signout_not_found_error_response_body.py +33 -0
  777. samsara/types/driver_remote_signout_post_driver_remote_signout_not_implemented_error_response_body.py +33 -0
  778. samsara/types/driver_remote_signout_post_driver_remote_signout_response_body.py +26 -0
  779. samsara/types/driver_remote_signout_post_driver_remote_signout_service_unavailable_error_response_body.py +33 -0
  780. samsara/types/driver_remote_signout_post_driver_remote_signout_too_many_requests_error_response_body.py +33 -0
  781. samsara/types/driver_remote_signout_post_driver_remote_signout_unauthorized_error_response_body.py +33 -0
  782. samsara/types/driver_response.py +24 -0
  783. samsara/types/driver_ruleset_object_response_body.py +50 -0
  784. samsara/types/driver_ruleset_object_response_body_break.py +7 -0
  785. samsara/types/driver_ruleset_object_response_body_cycle.py +34 -0
  786. samsara/types/driver_ruleset_object_response_body_restart.py +7 -0
  787. samsara/types/driver_ruleset_object_response_body_shift.py +7 -0
  788. samsara/types/driver_static_assigned_vehicle.py +31 -0
  789. samsara/types/driver_tachograph_activity_data.py +7 -0
  790. samsara/types/driver_tachograph_activity_response.py +26 -0
  791. samsara/types/driver_tachograph_card_number.py +3 -0
  792. samsara/types/driver_tags.py +7 -0
  793. samsara/types/driver_timezone.py +3 -0
  794. samsara/types/driver_tiny_response.py +31 -0
  795. samsara/types/driver_updated_at_time.py +3 -0
  796. samsara/types/driver_username.py +3 -0
  797. samsara/types/driver_vehicle_assignment_v_2_object_response_body.py +65 -0
  798. samsara/types/driver_vehicle_assignment_v_2_object_response_body_assignment_type.py +21 -0
  799. samsara/types/driver_vehicle_assignments_v_2_create_driver_vehicle_assignment_bad_gateway_error_response_body.py +33 -0
  800. samsara/types/driver_vehicle_assignments_v_2_create_driver_vehicle_assignment_gateway_timeout_error_response_body.py +33 -0
  801. samsara/types/driver_vehicle_assignments_v_2_create_driver_vehicle_assignment_internal_server_error_response_body.py +33 -0
  802. samsara/types/driver_vehicle_assignments_v_2_create_driver_vehicle_assignment_method_not_allowed_error_response_body.py +33 -0
  803. samsara/types/driver_vehicle_assignments_v_2_create_driver_vehicle_assignment_not_found_error_response_body.py +33 -0
  804. samsara/types/driver_vehicle_assignments_v_2_create_driver_vehicle_assignment_not_implemented_error_response_body.py +33 -0
  805. samsara/types/driver_vehicle_assignments_v_2_create_driver_vehicle_assignment_response_body.py +22 -0
  806. samsara/types/driver_vehicle_assignments_v_2_create_driver_vehicle_assignment_service_unavailable_error_response_body.py +33 -0
  807. samsara/types/driver_vehicle_assignments_v_2_create_driver_vehicle_assignment_too_many_requests_error_response_body.py +33 -0
  808. samsara/types/driver_vehicle_assignments_v_2_create_driver_vehicle_assignment_unauthorized_error_response_body.py +33 -0
  809. samsara/types/driver_vehicle_assignments_v_2_delete_driver_vehicle_assignments_bad_gateway_error_response_body.py +33 -0
  810. samsara/types/driver_vehicle_assignments_v_2_delete_driver_vehicle_assignments_gateway_timeout_error_response_body.py +33 -0
  811. samsara/types/driver_vehicle_assignments_v_2_delete_driver_vehicle_assignments_internal_server_error_response_body.py +33 -0
  812. samsara/types/driver_vehicle_assignments_v_2_delete_driver_vehicle_assignments_method_not_allowed_error_response_body.py +33 -0
  813. samsara/types/driver_vehicle_assignments_v_2_delete_driver_vehicle_assignments_not_found_error_response_body.py +33 -0
  814. samsara/types/driver_vehicle_assignments_v_2_delete_driver_vehicle_assignments_not_implemented_error_response_body.py +33 -0
  815. samsara/types/driver_vehicle_assignments_v_2_delete_driver_vehicle_assignments_service_unavailable_error_response_body.py +33 -0
  816. samsara/types/driver_vehicle_assignments_v_2_delete_driver_vehicle_assignments_too_many_requests_error_response_body.py +33 -0
  817. samsara/types/driver_vehicle_assignments_v_2_delete_driver_vehicle_assignments_unauthorized_error_response_body.py +33 -0
  818. samsara/types/driver_vehicle_assignments_v_2_get_driver_vehicle_assignments_bad_gateway_error_response_body.py +33 -0
  819. samsara/types/driver_vehicle_assignments_v_2_get_driver_vehicle_assignments_gateway_timeout_error_response_body.py +33 -0
  820. samsara/types/driver_vehicle_assignments_v_2_get_driver_vehicle_assignments_internal_server_error_response_body.py +33 -0
  821. samsara/types/driver_vehicle_assignments_v_2_get_driver_vehicle_assignments_method_not_allowed_error_response_body.py +33 -0
  822. samsara/types/driver_vehicle_assignments_v_2_get_driver_vehicle_assignments_not_found_error_response_body.py +33 -0
  823. samsara/types/driver_vehicle_assignments_v_2_get_driver_vehicle_assignments_not_implemented_error_response_body.py +33 -0
  824. samsara/types/driver_vehicle_assignments_v_2_get_driver_vehicle_assignments_response_body.py +26 -0
  825. samsara/types/driver_vehicle_assignments_v_2_get_driver_vehicle_assignments_service_unavailable_error_response_body.py +33 -0
  826. samsara/types/driver_vehicle_assignments_v_2_get_driver_vehicle_assignments_too_many_requests_error_response_body.py +33 -0
  827. samsara/types/driver_vehicle_assignments_v_2_get_driver_vehicle_assignments_unauthorized_error_response_body.py +33 -0
  828. samsara/types/driver_vehicle_assignments_v_2_update_driver_vehicle_assignment_bad_gateway_error_response_body.py +33 -0
  829. samsara/types/driver_vehicle_assignments_v_2_update_driver_vehicle_assignment_gateway_timeout_error_response_body.py +33 -0
  830. samsara/types/driver_vehicle_assignments_v_2_update_driver_vehicle_assignment_internal_server_error_response_body.py +33 -0
  831. samsara/types/driver_vehicle_assignments_v_2_update_driver_vehicle_assignment_method_not_allowed_error_response_body.py +33 -0
  832. samsara/types/driver_vehicle_assignments_v_2_update_driver_vehicle_assignment_not_found_error_response_body.py +33 -0
  833. samsara/types/driver_vehicle_assignments_v_2_update_driver_vehicle_assignment_not_implemented_error_response_body.py +33 -0
  834. samsara/types/driver_vehicle_assignments_v_2_update_driver_vehicle_assignment_response_body.py +22 -0
  835. samsara/types/driver_vehicle_assignments_v_2_update_driver_vehicle_assignment_service_unavailable_error_response_body.py +33 -0
  836. samsara/types/driver_vehicle_assignments_v_2_update_driver_vehicle_assignment_too_many_requests_error_response_body.py +33 -0
  837. samsara/types/driver_vehicle_assignments_v_2_update_driver_vehicle_assignment_unauthorized_error_response_body.py +33 -0
  838. samsara/types/driver_vehicle_group_tag.py +40 -0
  839. samsara/types/driver_waiting_time_duty_status_enabled.py +3 -0
  840. samsara/types/driver_with_external_id_object_response_body.py +35 -0
  841. samsara/types/driver_with_timezone_eld_settings_object_response_body.py +49 -0
  842. samsara/types/drivers_vehicle_assignments_get_drivers_vehicle_assignments_bad_gateway_error_response_body.py +33 -0
  843. samsara/types/drivers_vehicle_assignments_get_drivers_vehicle_assignments_gateway_timeout_error_response_body.py +33 -0
  844. samsara/types/drivers_vehicle_assignments_get_drivers_vehicle_assignments_internal_server_error_response_body.py +33 -0
  845. samsara/types/drivers_vehicle_assignments_get_drivers_vehicle_assignments_method_not_allowed_error_response_body.py +33 -0
  846. samsara/types/drivers_vehicle_assignments_get_drivers_vehicle_assignments_not_found_error_response_body.py +33 -0
  847. samsara/types/drivers_vehicle_assignments_get_drivers_vehicle_assignments_not_implemented_error_response_body.py +33 -0
  848. samsara/types/drivers_vehicle_assignments_get_drivers_vehicle_assignments_response_body.py +26 -0
  849. samsara/types/drivers_vehicle_assignments_get_drivers_vehicle_assignments_service_unavailable_error_response_body.py +33 -0
  850. samsara/types/drivers_vehicle_assignments_get_drivers_vehicle_assignments_too_many_requests_error_response_body.py +33 -0
  851. samsara/types/drivers_vehicle_assignments_get_drivers_vehicle_assignments_unauthorized_error_response_body.py +33 -0
  852. samsara/types/drivers_vehicle_assignments_object_response_body.py +54 -0
  853. samsara/types/drivers_vehicle_assignments_object_response_body_driver_activation_status.py +7 -0
  854. samsara/types/duty_status_duration_object_response_body.py +79 -0
  855. samsara/types/dvir.py +102 -0
  856. samsara/types/dvir_author_signature.py +18 -0
  857. samsara/types/dvir_defect_stream_defects_bad_gateway_error_response_body.py +33 -0
  858. samsara/types/dvir_defect_stream_defects_gateway_timeout_error_response_body.py +33 -0
  859. samsara/types/dvir_defect_stream_defects_internal_server_error_response_body.py +33 -0
  860. samsara/types/dvir_defect_stream_defects_method_not_allowed_error_response_body.py +33 -0
  861. samsara/types/dvir_defect_stream_defects_not_found_error_response_body.py +33 -0
  862. samsara/types/dvir_defect_stream_defects_not_implemented_error_response_body.py +33 -0
  863. samsara/types/dvir_defect_stream_defects_response_body.py +26 -0
  864. samsara/types/dvir_defect_stream_defects_service_unavailable_error_response_body.py +33 -0
  865. samsara/types/dvir_defect_stream_defects_too_many_requests_error_response_body.py +33 -0
  866. samsara/types/dvir_defect_stream_defects_unauthorized_error_response_body.py +33 -0
  867. samsara/types/dvir_defect_type_get_defect_types_bad_gateway_error_response_body.py +33 -0
  868. samsara/types/dvir_defect_type_get_defect_types_gateway_timeout_error_response_body.py +33 -0
  869. samsara/types/dvir_defect_type_get_defect_types_internal_server_error_response_body.py +33 -0
  870. samsara/types/dvir_defect_type_get_defect_types_method_not_allowed_error_response_body.py +33 -0
  871. samsara/types/dvir_defect_type_get_defect_types_not_found_error_response_body.py +33 -0
  872. samsara/types/dvir_defect_type_get_defect_types_not_implemented_error_response_body.py +33 -0
  873. samsara/types/dvir_defect_type_get_defect_types_response_body.py +26 -0
  874. samsara/types/dvir_defect_type_get_defect_types_service_unavailable_error_response_body.py +33 -0
  875. samsara/types/dvir_defect_type_get_defect_types_too_many_requests_error_response_body.py +33 -0
  876. samsara/types/dvir_defect_type_get_defect_types_unauthorized_error_response_body.py +33 -0
  877. samsara/types/dvir_defects_object_v_20220913_response_body.py +78 -0
  878. samsara/types/dvir_get_dvirs_bad_gateway_error_response_body.py +33 -0
  879. samsara/types/dvir_get_dvirs_gateway_timeout_error_response_body.py +33 -0
  880. samsara/types/dvir_get_dvirs_internal_server_error_response_body.py +33 -0
  881. samsara/types/dvir_get_dvirs_method_not_allowed_error_response_body.py +33 -0
  882. samsara/types/dvir_get_dvirs_not_found_error_response_body.py +33 -0
  883. samsara/types/dvir_get_dvirs_not_implemented_error_response_body.py +33 -0
  884. samsara/types/dvir_get_dvirs_response_body.py +22 -0
  885. samsara/types/dvir_get_dvirs_service_unavailable_error_response_body.py +33 -0
  886. samsara/types/dvir_get_dvirs_too_many_requests_error_response_body.py +33 -0
  887. samsara/types/dvir_get_dvirs_unauthorized_error_response_body.py +33 -0
  888. samsara/types/dvir_license_plate.py +3 -0
  889. samsara/types/dvir_location.py +3 -0
  890. samsara/types/dvir_mechanic_notes.py +3 -0
  891. samsara/types/dvir_odometer_meters.py +3 -0
  892. samsara/types/dvir_resolved_by_object_response_body.py +37 -0
  893. samsara/types/dvir_resolved_by_object_response_body_type.py +5 -0
  894. samsara/types/dvir_response.py +24 -0
  895. samsara/types/dvir_safety_status.py +5 -0
  896. samsara/types/dvir_second_signature.py +18 -0
  897. samsara/types/dvir_signature.py +40 -0
  898. samsara/types/dvir_signature_signatory_user.py +18 -0
  899. samsara/types/dvir_signature_type.py +5 -0
  900. samsara/types/dvir_stream_response_data_response_body.py +99 -0
  901. samsara/types/dvir_stream_response_data_response_body_safety_status.py +7 -0
  902. samsara/types/dvir_stream_response_data_response_body_type.py +7 -0
  903. samsara/types/dvir_submitted_device_trigger_details_object_request_body.py +41 -0
  904. samsara/types/dvir_submitted_device_trigger_details_object_request_body_dvir_submission_types_item.py +7 -0
  905. samsara/types/dvir_submitted_device_trigger_details_object_response_body.py +41 -0
  906. samsara/types/dvir_submitted_device_trigger_details_object_response_body_dvir_submission_types_item.py +7 -0
  907. samsara/types/dvir_third_signature.py +18 -0
  908. samsara/types/dvir_trailer.py +18 -0
  909. samsara/types/dvir_trailer_defects.py +7 -0
  910. samsara/types/dvir_trailer_defects_items.py +78 -0
  911. samsara/types/dvir_trailer_defects_items_trailer.py +27 -0
  912. samsara/types/dvir_trailer_defects_items_vehicle.py +36 -0
  913. samsara/types/dvir_type.py +5 -0
  914. samsara/types/dvir_vehicle.py +18 -0
  915. samsara/types/dvir_vehicle_defects.py +7 -0
  916. samsara/types/dvirs_list_response.py +30 -0
  917. samsara/types/eld_settings_object_response_body.py +27 -0
  918. samsara/types/engine_idle_data_response_body.py +26 -0
  919. samsara/types/engine_idle_trigger_details_object_request_body.py +30 -0
  920. samsara/types/engine_idle_trigger_details_object_response_body.py +30 -0
  921. samsara/types/engine_immobilizer_get_engine_immobilizer_states_bad_gateway_error_response_body.py +33 -0
  922. samsara/types/engine_immobilizer_get_engine_immobilizer_states_gateway_timeout_error_response_body.py +33 -0
  923. samsara/types/engine_immobilizer_get_engine_immobilizer_states_internal_server_error_response_body.py +33 -0
  924. samsara/types/engine_immobilizer_get_engine_immobilizer_states_method_not_allowed_error_response_body.py +33 -0
  925. samsara/types/engine_immobilizer_get_engine_immobilizer_states_not_found_error_response_body.py +33 -0
  926. samsara/types/engine_immobilizer_get_engine_immobilizer_states_not_implemented_error_response_body.py +33 -0
  927. samsara/types/engine_immobilizer_get_engine_immobilizer_states_response_body.py +26 -0
  928. samsara/types/engine_immobilizer_get_engine_immobilizer_states_service_unavailable_error_response_body.py +33 -0
  929. samsara/types/engine_immobilizer_get_engine_immobilizer_states_too_many_requests_error_response_body.py +33 -0
  930. samsara/types/engine_immobilizer_get_engine_immobilizer_states_unauthorized_error_response_body.py +33 -0
  931. samsara/types/engine_immobilizer_relay_state_response_body.py +34 -0
  932. samsara/types/engine_immobilizer_relay_state_response_body_id.py +5 -0
  933. samsara/types/engine_immobilizer_state_response_body.py +48 -0
  934. samsara/types/engine_off_details_object_request_body.py +30 -0
  935. samsara/types/engine_off_details_object_response_body.py +30 -0
  936. samsara/types/engine_off_response_body.py +28 -0
  937. samsara/types/engine_on_details_object_request_body.py +30 -0
  938. samsara/types/engine_on_details_object_response_body.py +30 -0
  939. samsara/types/engine_on_response_body.py +28 -0
  940. samsara/types/equipment_engine_rpm.py +28 -0
  941. samsara/types/equipment_engine_seconds.py +28 -0
  942. samsara/types/equipment_engine_state.py +29 -0
  943. samsara/types/equipment_engine_state_value.py +5 -0
  944. samsara/types/equipment_engine_total_idle_time_minutes.py +28 -0
  945. samsara/types/equipment_fuel_percent.py +28 -0
  946. samsara/types/equipment_gateway_engine_seconds.py +28 -0
  947. samsara/types/equipment_gateway_engine_state.py +29 -0
  948. samsara/types/equipment_gateway_engine_state_value.py +5 -0
  949. samsara/types/equipment_gateway_j_1939_engine_seconds.py +28 -0
  950. samsara/types/equipment_gps_odometer_meters.py +28 -0
  951. samsara/types/equipment_id.py +3 -0
  952. samsara/types/equipment_installed_gateway.py +27 -0
  953. samsara/types/equipment_list_response.py +30 -0
  954. samsara/types/equipment_location.py +44 -0
  955. samsara/types/equipment_locations_list_response.py +30 -0
  956. samsara/types/equipment_locations_list_response_data.py +32 -0
  957. samsara/types/equipment_locations_response.py +30 -0
  958. samsara/types/equipment_locations_response_data.py +28 -0
  959. samsara/types/equipment_name.py +3 -0
  960. samsara/types/equipment_obd_engine_seconds.py +28 -0
  961. samsara/types/equipment_obd_engine_state.py +29 -0
  962. samsara/types/equipment_obd_engine_state_value.py +5 -0
  963. samsara/types/equipment_object.py +53 -0
  964. samsara/types/equipment_response.py +24 -0
  965. samsara/types/equipment_stats_gps.py +48 -0
  966. samsara/types/equipment_stats_list_response.py +30 -0
  967. samsara/types/equipment_stats_list_response_data.py +123 -0
  968. samsara/types/equipment_stats_response.py +30 -0
  969. samsara/types/equipment_stats_response_data.py +70 -0
  970. samsara/types/equipment_time.py +3 -0
  971. samsara/types/external_ids.py +5 -0
  972. samsara/types/field_object_post_request_body.py +31 -0
  973. samsara/types/field_object_post_request_body_type.py +10 -0
  974. samsara/types/field_object_response_body.py +31 -0
  975. samsara/types/field_object_response_body_type.py +10 -0
  976. samsara/types/field_object_value_request_body.py +77 -0
  977. samsara/types/field_object_value_response_body.py +78 -0
  978. samsara/types/field_types_object_response_body.py +55 -0
  979. samsara/types/field_types_object_response_body_field_type.py +10 -0
  980. samsara/types/following_distance_detection_alert_settings_object_response_body.py +51 -0
  981. samsara/types/form_submission_pdf_export_response_object_response_body.py +84 -0
  982. samsara/types/form_submission_pdf_export_response_object_response_body_job_status.py +7 -0
  983. samsara/types/form_submission_request_approval_details_request_body.py +26 -0
  984. samsara/types/form_submission_request_asset_object_request_body.py +26 -0
  985. samsara/types/form_submission_request_asset_value_object_request_body.py +24 -0
  986. samsara/types/form_submission_request_assigned_to_request_body.py +32 -0
  987. samsara/types/form_submission_request_assigned_to_request_body_type.py +5 -0
  988. samsara/types/form_submission_request_check_boxes_value_object_request_body.py +25 -0
  989. samsara/types/form_submission_request_date_time_value_object_request_body.py +27 -0
  990. samsara/types/form_submission_request_field_input_object_request_body.py +75 -0
  991. samsara/types/form_submission_request_field_input_object_request_body_type.py +8 -0
  992. samsara/types/form_submission_request_multiple_choice_value_object_request_body.py +25 -0
  993. samsara/types/form_submission_request_number_value_object_request_body.py +23 -0
  994. samsara/types/form_submission_request_person_object_request_body.py +28 -0
  995. samsara/types/form_submission_request_person_value_object_request_body.py +24 -0
  996. samsara/types/form_submission_request_table_cell_object_request_body.py +67 -0
  997. samsara/types/form_submission_request_table_cell_object_request_body_type.py +7 -0
  998. samsara/types/form_submission_request_table_row_object_request_body.py +32 -0
  999. samsara/types/form_submission_request_table_value_object_request_body.py +27 -0
  1000. samsara/types/form_submission_request_text_value_object_request_body.py +23 -0
  1001. samsara/types/form_submission_response_object_response_body.py +120 -0
  1002. samsara/types/form_submission_response_object_response_body_status.py +8 -0
  1003. samsara/types/form_submissions_get_form_submissions_bad_gateway_error_response_body.py +33 -0
  1004. samsara/types/form_submissions_get_form_submissions_gateway_timeout_error_response_body.py +33 -0
  1005. samsara/types/form_submissions_get_form_submissions_internal_server_error_response_body.py +33 -0
  1006. samsara/types/form_submissions_get_form_submissions_method_not_allowed_error_response_body.py +33 -0
  1007. samsara/types/form_submissions_get_form_submissions_not_found_error_response_body.py +33 -0
  1008. samsara/types/form_submissions_get_form_submissions_not_implemented_error_response_body.py +33 -0
  1009. samsara/types/form_submissions_get_form_submissions_pdf_exports_bad_gateway_error_response_body.py +33 -0
  1010. samsara/types/form_submissions_get_form_submissions_pdf_exports_gateway_timeout_error_response_body.py +33 -0
  1011. samsara/types/form_submissions_get_form_submissions_pdf_exports_internal_server_error_response_body.py +33 -0
  1012. samsara/types/form_submissions_get_form_submissions_pdf_exports_method_not_allowed_error_response_body.py +33 -0
  1013. samsara/types/form_submissions_get_form_submissions_pdf_exports_not_found_error_response_body.py +33 -0
  1014. samsara/types/form_submissions_get_form_submissions_pdf_exports_not_implemented_error_response_body.py +33 -0
  1015. samsara/types/form_submissions_get_form_submissions_pdf_exports_response_body.py +20 -0
  1016. samsara/types/form_submissions_get_form_submissions_pdf_exports_service_unavailable_error_response_body.py +33 -0
  1017. samsara/types/form_submissions_get_form_submissions_pdf_exports_too_many_requests_error_response_body.py +33 -0
  1018. samsara/types/form_submissions_get_form_submissions_pdf_exports_unauthorized_error_response_body.py +33 -0
  1019. samsara/types/form_submissions_get_form_submissions_response_body.py +23 -0
  1020. samsara/types/form_submissions_get_form_submissions_service_unavailable_error_response_body.py +33 -0
  1021. samsara/types/form_submissions_get_form_submissions_stream_bad_gateway_error_response_body.py +33 -0
  1022. samsara/types/form_submissions_get_form_submissions_stream_gateway_timeout_error_response_body.py +33 -0
  1023. samsara/types/form_submissions_get_form_submissions_stream_internal_server_error_response_body.py +33 -0
  1024. samsara/types/form_submissions_get_form_submissions_stream_method_not_allowed_error_response_body.py +33 -0
  1025. samsara/types/form_submissions_get_form_submissions_stream_not_found_error_response_body.py +33 -0
  1026. samsara/types/form_submissions_get_form_submissions_stream_not_implemented_error_response_body.py +33 -0
  1027. samsara/types/form_submissions_get_form_submissions_stream_response_body.py +26 -0
  1028. samsara/types/form_submissions_get_form_submissions_stream_service_unavailable_error_response_body.py +33 -0
  1029. samsara/types/form_submissions_get_form_submissions_stream_too_many_requests_error_response_body.py +33 -0
  1030. samsara/types/form_submissions_get_form_submissions_stream_unauthorized_error_response_body.py +33 -0
  1031. samsara/types/form_submissions_get_form_submissions_too_many_requests_error_response_body.py +33 -0
  1032. samsara/types/form_submissions_get_form_submissions_unauthorized_error_response_body.py +33 -0
  1033. samsara/types/form_submissions_patch_form_submission_bad_gateway_error_response_body.py +33 -0
  1034. samsara/types/form_submissions_patch_form_submission_gateway_timeout_error_response_body.py +33 -0
  1035. samsara/types/form_submissions_patch_form_submission_internal_server_error_response_body.py +33 -0
  1036. samsara/types/form_submissions_patch_form_submission_method_not_allowed_error_response_body.py +33 -0
  1037. samsara/types/form_submissions_patch_form_submission_not_found_error_response_body.py +33 -0
  1038. samsara/types/form_submissions_patch_form_submission_not_implemented_error_response_body.py +33 -0
  1039. samsara/types/form_submissions_patch_form_submission_response_body.py +20 -0
  1040. samsara/types/form_submissions_patch_form_submission_service_unavailable_error_response_body.py +33 -0
  1041. samsara/types/form_submissions_patch_form_submission_too_many_requests_error_response_body.py +33 -0
  1042. samsara/types/form_submissions_patch_form_submission_unauthorized_error_response_body.py +33 -0
  1043. samsara/types/form_submissions_post_form_submission_bad_gateway_error_response_body.py +33 -0
  1044. samsara/types/form_submissions_post_form_submission_gateway_timeout_error_response_body.py +33 -0
  1045. samsara/types/form_submissions_post_form_submission_internal_server_error_response_body.py +33 -0
  1046. samsara/types/form_submissions_post_form_submission_method_not_allowed_error_response_body.py +33 -0
  1047. samsara/types/form_submissions_post_form_submission_not_found_error_response_body.py +33 -0
  1048. samsara/types/form_submissions_post_form_submission_not_implemented_error_response_body.py +33 -0
  1049. samsara/types/form_submissions_post_form_submission_response_body.py +20 -0
  1050. samsara/types/form_submissions_post_form_submission_service_unavailable_error_response_body.py +33 -0
  1051. samsara/types/form_submissions_post_form_submission_too_many_requests_error_response_body.py +33 -0
  1052. samsara/types/form_submissions_post_form_submission_unauthorized_error_response_body.py +33 -0
  1053. samsara/types/form_submissions_post_form_submissions_pdf_exports_bad_gateway_error_response_body.py +33 -0
  1054. samsara/types/form_submissions_post_form_submissions_pdf_exports_gateway_timeout_error_response_body.py +33 -0
  1055. samsara/types/form_submissions_post_form_submissions_pdf_exports_internal_server_error_response_body.py +33 -0
  1056. samsara/types/form_submissions_post_form_submissions_pdf_exports_method_not_allowed_error_response_body.py +33 -0
  1057. samsara/types/form_submissions_post_form_submissions_pdf_exports_not_found_error_response_body.py +33 -0
  1058. samsara/types/form_submissions_post_form_submissions_pdf_exports_not_implemented_error_response_body.py +33 -0
  1059. samsara/types/form_submissions_post_form_submissions_pdf_exports_response_body.py +20 -0
  1060. samsara/types/form_submissions_post_form_submissions_pdf_exports_service_unavailable_error_response_body.py +33 -0
  1061. samsara/types/form_submissions_post_form_submissions_pdf_exports_too_many_requests_error_response_body.py +33 -0
  1062. samsara/types/form_submissions_post_form_submissions_pdf_exports_unauthorized_error_response_body.py +33 -0
  1063. samsara/types/form_submitted_response_body.py +24 -0
  1064. samsara/types/form_template_reference_object_request_body.py +33 -0
  1065. samsara/types/form_template_reference_object_response_body.py +33 -0
  1066. samsara/types/forms_asset_object_response_body.py +41 -0
  1067. samsara/types/forms_asset_object_response_body_entry_type.py +5 -0
  1068. samsara/types/forms_asset_value_object_response_body.py +24 -0
  1069. samsara/types/forms_check_boxes_value_object_response_body.py +26 -0
  1070. samsara/types/forms_date_time_value_object_response_body.py +33 -0
  1071. samsara/types/forms_date_time_value_object_response_body_type.py +5 -0
  1072. samsara/types/forms_field_input_object_response_body.py +95 -0
  1073. samsara/types/forms_issue_created_by_field_object_response_body.py +35 -0
  1074. samsara/types/forms_location_object_response_body.py +31 -0
  1075. samsara/types/forms_media_record_object_response_body.py +51 -0
  1076. samsara/types/forms_media_record_object_response_body_processing_status.py +7 -0
  1077. samsara/types/forms_media_value_object_response_body.py +31 -0
  1078. samsara/types/forms_multiple_choice_value_object_response_body.py +26 -0
  1079. samsara/types/forms_number_value_object_response_body.py +26 -0
  1080. samsara/types/forms_person_object_response_body.py +41 -0
  1081. samsara/types/forms_person_object_response_body_entry_type.py +5 -0
  1082. samsara/types/forms_person_value_object_response_body.py +24 -0
  1083. samsara/types/forms_polymorphic_user_object_response_body.py +32 -0
  1084. samsara/types/forms_polymorphic_user_object_response_body_type.py +5 -0
  1085. samsara/types/forms_score_object_response_body.py +38 -0
  1086. samsara/types/forms_signature_value_object_response_body.py +24 -0
  1087. samsara/types/forms_table_cell_object_response_body.py +67 -0
  1088. samsara/types/forms_table_column_object_response_body.py +38 -0
  1089. samsara/types/forms_table_row_object_response_body.py +32 -0
  1090. samsara/types/forms_table_value_object_response_body.py +33 -0
  1091. samsara/types/forms_text_value_object_response_body.py +26 -0
  1092. samsara/types/forward_collision_detection_alert_settings_object_response_body.py +47 -0
  1093. samsara/types/forward_collision_detection_alert_settings_object_response_body_sensitivity.py +7 -0
  1094. samsara/types/fuel_energy_cost_response_response_body.py +33 -0
  1095. samsara/types/fuel_energy_driver_report_data_object_response_body.py +31 -0
  1096. samsara/types/fuel_energy_driver_report_object_response_body.py +76 -0
  1097. samsara/types/fuel_energy_get_fuel_energy_driver_reports_bad_gateway_error_response_body.py +33 -0
  1098. samsara/types/fuel_energy_get_fuel_energy_driver_reports_gateway_timeout_error_response_body.py +33 -0
  1099. samsara/types/fuel_energy_get_fuel_energy_driver_reports_internal_server_error_response_body.py +33 -0
  1100. samsara/types/fuel_energy_get_fuel_energy_driver_reports_method_not_allowed_error_response_body.py +33 -0
  1101. samsara/types/fuel_energy_get_fuel_energy_driver_reports_not_found_error_response_body.py +33 -0
  1102. samsara/types/fuel_energy_get_fuel_energy_driver_reports_not_implemented_error_response_body.py +33 -0
  1103. samsara/types/fuel_energy_get_fuel_energy_driver_reports_response_body.py +22 -0
  1104. samsara/types/fuel_energy_get_fuel_energy_driver_reports_service_unavailable_error_response_body.py +33 -0
  1105. samsara/types/fuel_energy_get_fuel_energy_driver_reports_too_many_requests_error_response_body.py +33 -0
  1106. samsara/types/fuel_energy_get_fuel_energy_driver_reports_unauthorized_error_response_body.py +33 -0
  1107. samsara/types/fuel_energy_get_fuel_energy_vehicle_reports_bad_gateway_error_response_body.py +33 -0
  1108. samsara/types/fuel_energy_get_fuel_energy_vehicle_reports_gateway_timeout_error_response_body.py +33 -0
  1109. samsara/types/fuel_energy_get_fuel_energy_vehicle_reports_internal_server_error_response_body.py +33 -0
  1110. samsara/types/fuel_energy_get_fuel_energy_vehicle_reports_method_not_allowed_error_response_body.py +33 -0
  1111. samsara/types/fuel_energy_get_fuel_energy_vehicle_reports_not_found_error_response_body.py +33 -0
  1112. samsara/types/fuel_energy_get_fuel_energy_vehicle_reports_not_implemented_error_response_body.py +33 -0
  1113. samsara/types/fuel_energy_get_fuel_energy_vehicle_reports_response_body.py +22 -0
  1114. samsara/types/fuel_energy_get_fuel_energy_vehicle_reports_service_unavailable_error_response_body.py +33 -0
  1115. samsara/types/fuel_energy_get_fuel_energy_vehicle_reports_too_many_requests_error_response_body.py +33 -0
  1116. samsara/types/fuel_energy_get_fuel_energy_vehicle_reports_unauthorized_error_response_body.py +33 -0
  1117. samsara/types/fuel_energy_vehicle_object_response_body.py +48 -0
  1118. samsara/types/fuel_energy_vehicle_object_response_body_energy_type.py +5 -0
  1119. samsara/types/fuel_energy_vehicle_report_data_object_response_body.py +31 -0
  1120. samsara/types/fuel_energy_vehicle_report_object_response_body.py +77 -0
  1121. samsara/types/fuel_level_percentage_response_body.py +28 -0
  1122. samsara/types/fuel_level_trigger_details_object_request_body.py +40 -0
  1123. samsara/types/fuel_level_trigger_details_object_response_body.py +40 -0
  1124. samsara/types/fuel_purchase_post_fuel_purchase_bad_gateway_error_response_body.py +33 -0
  1125. samsara/types/fuel_purchase_post_fuel_purchase_gateway_timeout_error_response_body.py +33 -0
  1126. samsara/types/fuel_purchase_post_fuel_purchase_internal_server_error_response_body.py +33 -0
  1127. samsara/types/fuel_purchase_post_fuel_purchase_method_not_allowed_error_response_body.py +33 -0
  1128. samsara/types/fuel_purchase_post_fuel_purchase_not_found_error_response_body.py +33 -0
  1129. samsara/types/fuel_purchase_post_fuel_purchase_not_implemented_error_response_body.py +33 -0
  1130. samsara/types/fuel_purchase_post_fuel_purchase_response_body.py +20 -0
  1131. samsara/types/fuel_purchase_post_fuel_purchase_service_unavailable_error_response_body.py +33 -0
  1132. samsara/types/fuel_purchase_post_fuel_purchase_too_many_requests_error_response_body.py +33 -0
  1133. samsara/types/fuel_purchase_post_fuel_purchase_unauthorized_error_response_body.py +33 -0
  1134. samsara/types/gateway_asset_response_object_response_body.py +35 -0
  1135. samsara/types/gateway_details_response_response_body.py +53 -0
  1136. samsara/types/gateway_details_response_response_body_gateway_battery_state.py +5 -0
  1137. samsara/types/gateway_disconnected_details_object_request_body.py +30 -0
  1138. samsara/types/gateway_disconnected_details_object_response_body.py +30 -0
  1139. samsara/types/gateway_disconnected_response_body.py +28 -0
  1140. samsara/types/gateway_response_object_response_body.py +48 -0
  1141. samsara/types/gateway_response_object_response_body_model.py +52 -0
  1142. samsara/types/gateway_tiny.py +31 -0
  1143. samsara/types/gateway_unplugged_trigger_details_object_request_body.py +30 -0
  1144. samsara/types/gateway_unplugged_trigger_details_object_response_body.py +30 -0
  1145. samsara/types/gateway_with_vehicle_tiny_response_response_body.py +31 -0
  1146. samsara/types/gateway_with_vehicle_tiny_response_response_body_model.py +52 -0
  1147. samsara/types/gateways_delete_gateway_bad_gateway_error_response_body.py +33 -0
  1148. samsara/types/gateways_delete_gateway_gateway_timeout_error_response_body.py +33 -0
  1149. samsara/types/gateways_delete_gateway_internal_server_error_response_body.py +33 -0
  1150. samsara/types/gateways_delete_gateway_method_not_allowed_error_response_body.py +33 -0
  1151. samsara/types/gateways_delete_gateway_not_found_error_response_body.py +33 -0
  1152. samsara/types/gateways_delete_gateway_not_implemented_error_response_body.py +33 -0
  1153. samsara/types/gateways_delete_gateway_service_unavailable_error_response_body.py +33 -0
  1154. samsara/types/gateways_delete_gateway_too_many_requests_error_response_body.py +33 -0
  1155. samsara/types/gateways_delete_gateway_unauthorized_error_response_body.py +33 -0
  1156. samsara/types/gateways_get_gateways_bad_gateway_error_response_body.py +33 -0
  1157. samsara/types/gateways_get_gateways_gateway_timeout_error_response_body.py +33 -0
  1158. samsara/types/gateways_get_gateways_internal_server_error_response_body.py +33 -0
  1159. samsara/types/gateways_get_gateways_method_not_allowed_error_response_body.py +33 -0
  1160. samsara/types/gateways_get_gateways_not_found_error_response_body.py +33 -0
  1161. samsara/types/gateways_get_gateways_not_implemented_error_response_body.py +33 -0
  1162. samsara/types/gateways_get_gateways_response_body.py +26 -0
  1163. samsara/types/gateways_get_gateways_service_unavailable_error_response_body.py +33 -0
  1164. samsara/types/gateways_get_gateways_too_many_requests_error_response_body.py +33 -0
  1165. samsara/types/gateways_get_gateways_unauthorized_error_response_body.py +33 -0
  1166. samsara/types/gateways_post_gateway_bad_gateway_error_response_body.py +33 -0
  1167. samsara/types/gateways_post_gateway_gateway_timeout_error_response_body.py +33 -0
  1168. samsara/types/gateways_post_gateway_internal_server_error_response_body.py +33 -0
  1169. samsara/types/gateways_post_gateway_method_not_allowed_error_response_body.py +33 -0
  1170. samsara/types/gateways_post_gateway_not_found_error_response_body.py +33 -0
  1171. samsara/types/gateways_post_gateway_not_implemented_error_response_body.py +33 -0
  1172. samsara/types/gateways_post_gateway_response_body.py +20 -0
  1173. samsara/types/gateways_post_gateway_service_unavailable_error_response_body.py +33 -0
  1174. samsara/types/gateways_post_gateway_too_many_requests_error_response_body.py +33 -0
  1175. samsara/types/gateways_post_gateway_unauthorized_error_response_body.py +33 -0
  1176. samsara/types/geofence_entry_trigger_details_object_request_body.py +24 -0
  1177. samsara/types/geofence_entry_trigger_details_object_response_body.py +24 -0
  1178. samsara/types/geofence_exit_trigger_details_object_request_body.py +24 -0
  1179. samsara/types/geofence_exit_trigger_details_object_response_body.py +24 -0
  1180. samsara/types/geofence_response_response_body.py +35 -0
  1181. samsara/types/get_attributes_by_entity_type_response.py +22 -0
  1182. samsara/types/get_document_type_response_object_response_body.py +53 -0
  1183. samsara/types/get_driver_trailer_assignments_response_body_response_body.py +58 -0
  1184. samsara/types/get_media_retrieval_object_response_body.py +23 -0
  1185. samsara/types/get_response_workflow_configuration_object_response_body.py +75 -0
  1186. samsara/types/get_workflow_incident_response_object_response_body.py +57 -0
  1187. samsara/types/goa_address_tiny_response_response_body.py +40 -0
  1188. samsara/types/goa_attribute_tiny_request_body.py +47 -0
  1189. samsara/types/goa_attribute_tiny_response_body.py +47 -0
  1190. samsara/types/goa_document_tiny_response_response_body.py +31 -0
  1191. samsara/types/goa_document_type_tiny_response_response_body.py +31 -0
  1192. samsara/types/goa_driver_tiny_response_response_body.py +40 -0
  1193. samsara/types/goa_gateway_tiny_response_response_body.py +32 -0
  1194. samsara/types/goa_gateway_tiny_response_response_body_model.py +52 -0
  1195. samsara/types/goa_pagination_response_response_body.py +33 -0
  1196. samsara/types/goa_pagination_with_tokens_response_response_body.py +35 -0
  1197. samsara/types/goa_route_stop_tiny_response_response_body.py +40 -0
  1198. samsara/types/goa_route_tiny_response_response_body.py +40 -0
  1199. samsara/types/goa_tag_tiny_response_request_body.py +40 -0
  1200. samsara/types/goa_tag_tiny_response_response_body.py +40 -0
  1201. samsara/types/goa_trailer_tiny_response_response_body.py +40 -0
  1202. samsara/types/goa_vehicle_tiny_response_response_body.py +40 -0
  1203. samsara/types/gps_signal_loss_details_object_request_body.py +30 -0
  1204. samsara/types/gps_signal_loss_details_object_response_body.py +30 -0
  1205. samsara/types/gps_signal_loss_response_body.py +28 -0
  1206. samsara/types/gross_vehicle_weight.py +32 -0
  1207. samsara/types/gross_vehicle_weight_unit.py +5 -0
  1208. samsara/types/harsh_accel_sensitivity_g_force_settings_object_response_body.py +42 -0
  1209. samsara/types/harsh_accel_sensitivity_v_2_settings_object_response_body.py +53 -0
  1210. samsara/types/harsh_accel_sensitivity_v_2_settings_object_response_body_heavy_duty.py +7 -0
  1211. samsara/types/harsh_accel_sensitivity_v_2_settings_object_response_body_light_duty.py +7 -0
  1212. samsara/types/harsh_accel_sensitivity_v_2_settings_object_response_body_passenger.py +7 -0
  1213. samsara/types/harsh_brake_sensitivity_g_force_settings_object_response_body.py +42 -0
  1214. samsara/types/harsh_brake_sensitivity_v_2_settings_object_response_body.py +53 -0
  1215. samsara/types/harsh_brake_sensitivity_v_2_settings_object_response_body_heavy_duty.py +7 -0
  1216. samsara/types/harsh_brake_sensitivity_v_2_settings_object_response_body_light_duty.py +7 -0
  1217. samsara/types/harsh_brake_sensitivity_v_2_settings_object_response_body_passenger.py +7 -0
  1218. samsara/types/harsh_event_data_response_body.py +26 -0
  1219. samsara/types/harsh_event_sensitivity_settings_object_response_body.py +45 -0
  1220. samsara/types/harsh_event_sensitivity_v_2_settings_object_response_body.py +36 -0
  1221. samsara/types/harsh_event_trigger_details_object_request_body.py +29 -0
  1222. samsara/types/harsh_event_trigger_details_object_request_body_types_item.py +45 -0
  1223. samsara/types/harsh_event_trigger_details_object_response_body.py +29 -0
  1224. samsara/types/harsh_event_trigger_details_object_response_body_types_item.py +45 -0
  1225. samsara/types/harsh_turn_sensitivity_g_force_settings_object_response_body.py +42 -0
  1226. samsara/types/harsh_turn_sensitivity_v_2_settings_object_response_body.py +51 -0
  1227. samsara/types/harsh_turn_sensitivity_v_2_settings_object_response_body_heavy_duty.py +7 -0
  1228. samsara/types/harsh_turn_sensitivity_v_2_settings_object_response_body_light_duty.py +7 -0
  1229. samsara/types/harsh_turn_sensitivity_v_2_settings_object_response_body_passenger.py +7 -0
  1230. samsara/types/health_details_response_response_body.py +32 -0
  1231. samsara/types/health_reason_response_response_body.py +39 -0
  1232. samsara/types/health_reason_response_response_body_health_reason_code.py +25 -0
  1233. samsara/types/health_response_response_body.py +99 -0
  1234. samsara/types/health_response_response_body_health_status.py +7 -0
  1235. samsara/types/health_response_response_body_primary_health_reason.py +25 -0
  1236. samsara/types/health_response_response_body_recommended_action.py +37 -0
  1237. samsara/types/hos_break.py +30 -0
  1238. samsara/types/hos_clocks.py +32 -0
  1239. samsara/types/hos_clocks_for_driver.py +38 -0
  1240. samsara/types/hos_clocks_for_drivers.py +7 -0
  1241. samsara/types/hos_clocks_response.py +26 -0
  1242. samsara/types/hos_cycle.py +41 -0
  1243. samsara/types/hos_daily_logs_get_hos_daily_logs_bad_gateway_error_response_body.py +33 -0
  1244. samsara/types/hos_daily_logs_get_hos_daily_logs_gateway_timeout_error_response_body.py +33 -0
  1245. samsara/types/hos_daily_logs_get_hos_daily_logs_internal_server_error_response_body.py +33 -0
  1246. samsara/types/hos_daily_logs_get_hos_daily_logs_method_not_allowed_error_response_body.py +33 -0
  1247. samsara/types/hos_daily_logs_get_hos_daily_logs_not_found_error_response_body.py +33 -0
  1248. samsara/types/hos_daily_logs_get_hos_daily_logs_not_implemented_error_response_body.py +33 -0
  1249. samsara/types/hos_daily_logs_get_hos_daily_logs_response_body.py +26 -0
  1250. samsara/types/hos_daily_logs_get_hos_daily_logs_service_unavailable_error_response_body.py +33 -0
  1251. samsara/types/hos_daily_logs_get_hos_daily_logs_too_many_requests_error_response_body.py +33 -0
  1252. samsara/types/hos_daily_logs_get_hos_daily_logs_unauthorized_error_response_body.py +33 -0
  1253. samsara/types/hos_daily_logs_object_response_body.py +47 -0
  1254. samsara/types/hos_daily_logs_update_shipping_docs_bad_gateway_error_response_body.py +33 -0
  1255. samsara/types/hos_daily_logs_update_shipping_docs_gateway_timeout_error_response_body.py +33 -0
  1256. samsara/types/hos_daily_logs_update_shipping_docs_internal_server_error_response_body.py +33 -0
  1257. samsara/types/hos_daily_logs_update_shipping_docs_method_not_allowed_error_response_body.py +33 -0
  1258. samsara/types/hos_daily_logs_update_shipping_docs_not_found_error_response_body.py +33 -0
  1259. samsara/types/hos_daily_logs_update_shipping_docs_not_implemented_error_response_body.py +33 -0
  1260. samsara/types/hos_daily_logs_update_shipping_docs_response_body.py +20 -0
  1261. samsara/types/hos_daily_logs_update_shipping_docs_service_unavailable_error_response_body.py +33 -0
  1262. samsara/types/hos_daily_logs_update_shipping_docs_too_many_requests_error_response_body.py +33 -0
  1263. samsara/types/hos_daily_logs_update_shipping_docs_unauthorized_error_response_body.py +33 -0
  1264. samsara/types/hos_drive.py +30 -0
  1265. samsara/types/hos_log_entry.py +52 -0
  1266. samsara/types/hos_log_entry_hos_status_type.py +7 -0
  1267. samsara/types/hos_log_location.py +31 -0
  1268. samsara/types/hos_logs_for_driver.py +28 -0
  1269. samsara/types/hos_logs_for_drivers.py +7 -0
  1270. samsara/types/hos_logs_list.py +7 -0
  1271. samsara/types/hos_logs_response.py +26 -0
  1272. samsara/types/hos_shift.py +30 -0
  1273. samsara/types/hos_violation_data_response_body.py +24 -0
  1274. samsara/types/hos_violation_day_object_response_body.py +29 -0
  1275. samsara/types/hos_violation_object_response_body.py +49 -0
  1276. samsara/types/hos_violation_object_response_body_type.py +27 -0
  1277. samsara/types/hos_violation_trigger_details_object_request_body.py +38 -0
  1278. samsara/types/hos_violation_trigger_details_object_request_body_violation.py +19 -0
  1279. samsara/types/hos_violation_trigger_details_object_response_body.py +38 -0
  1280. samsara/types/hos_violation_trigger_details_object_response_body_violation.py +19 -0
  1281. samsara/types/hos_violations.py +37 -0
  1282. samsara/types/hos_violations_get_hos_violations_bad_gateway_error_response_body.py +33 -0
  1283. samsara/types/hos_violations_get_hos_violations_gateway_timeout_error_response_body.py +33 -0
  1284. samsara/types/hos_violations_get_hos_violations_internal_server_error_response_body.py +33 -0
  1285. samsara/types/hos_violations_get_hos_violations_method_not_allowed_error_response_body.py +33 -0
  1286. samsara/types/hos_violations_get_hos_violations_not_found_error_response_body.py +33 -0
  1287. samsara/types/hos_violations_get_hos_violations_not_implemented_error_response_body.py +33 -0
  1288. samsara/types/hos_violations_get_hos_violations_response_body.py +26 -0
  1289. samsara/types/hos_violations_get_hos_violations_service_unavailable_error_response_body.py +33 -0
  1290. samsara/types/hos_violations_get_hos_violations_too_many_requests_error_response_body.py +33 -0
  1291. samsara/types/hos_violations_get_hos_violations_unauthorized_error_response_body.py +33 -0
  1292. samsara/types/hos_violations_object_response_body.py +23 -0
  1293. samsara/types/idling_report_event_address_response_body.py +36 -0
  1294. samsara/types/idling_report_event_response_body.py +53 -0
  1295. samsara/types/idling_reports_get_vehicle_idling_reports_bad_gateway_error_response_body.py +33 -0
  1296. samsara/types/idling_reports_get_vehicle_idling_reports_gateway_timeout_error_response_body.py +33 -0
  1297. samsara/types/idling_reports_get_vehicle_idling_reports_internal_server_error_response_body.py +33 -0
  1298. samsara/types/idling_reports_get_vehicle_idling_reports_method_not_allowed_error_response_body.py +33 -0
  1299. samsara/types/idling_reports_get_vehicle_idling_reports_not_found_error_response_body.py +33 -0
  1300. samsara/types/idling_reports_get_vehicle_idling_reports_not_implemented_error_response_body.py +33 -0
  1301. samsara/types/idling_reports_get_vehicle_idling_reports_response_body.py +37 -0
  1302. samsara/types/idling_reports_get_vehicle_idling_reports_service_unavailable_error_response_body.py +33 -0
  1303. samsara/types/idling_reports_get_vehicle_idling_reports_too_many_requests_error_response_body.py +33 -0
  1304. samsara/types/idling_reports_get_vehicle_idling_reports_unauthorized_error_response_body.py +33 -0
  1305. samsara/types/ifta_create_ifta_detail_job_bad_gateway_error_response_body.py +33 -0
  1306. samsara/types/ifta_create_ifta_detail_job_gateway_timeout_error_response_body.py +33 -0
  1307. samsara/types/ifta_create_ifta_detail_job_internal_server_error_response_body.py +33 -0
  1308. samsara/types/ifta_create_ifta_detail_job_method_not_allowed_error_response_body.py +33 -0
  1309. samsara/types/ifta_create_ifta_detail_job_not_found_error_response_body.py +33 -0
  1310. samsara/types/ifta_create_ifta_detail_job_not_implemented_error_response_body.py +33 -0
  1311. samsara/types/ifta_create_ifta_detail_job_response_body.py +20 -0
  1312. samsara/types/ifta_create_ifta_detail_job_service_unavailable_error_response_body.py +33 -0
  1313. samsara/types/ifta_create_ifta_detail_job_too_many_requests_error_response_body.py +33 -0
  1314. samsara/types/ifta_create_ifta_detail_job_unauthorized_error_response_body.py +33 -0
  1315. samsara/types/ifta_detail_job_args_response_body.py +38 -0
  1316. samsara/types/ifta_detail_job_output_response_body.py +50 -0
  1317. samsara/types/ifta_detail_job_response_body.py +75 -0
  1318. samsara/types/ifta_detail_job_response_body_job_status.py +7 -0
  1319. samsara/types/ifta_get_ifta_detail_job_bad_gateway_error_response_body.py +33 -0
  1320. samsara/types/ifta_get_ifta_detail_job_gateway_timeout_error_response_body.py +33 -0
  1321. samsara/types/ifta_get_ifta_detail_job_internal_server_error_response_body.py +33 -0
  1322. samsara/types/ifta_get_ifta_detail_job_method_not_allowed_error_response_body.py +33 -0
  1323. samsara/types/ifta_get_ifta_detail_job_not_found_error_response_body.py +33 -0
  1324. samsara/types/ifta_get_ifta_detail_job_not_implemented_error_response_body.py +33 -0
  1325. samsara/types/ifta_get_ifta_detail_job_response_body.py +20 -0
  1326. samsara/types/ifta_get_ifta_detail_job_service_unavailable_error_response_body.py +33 -0
  1327. samsara/types/ifta_get_ifta_detail_job_too_many_requests_error_response_body.py +33 -0
  1328. samsara/types/ifta_get_ifta_detail_job_unauthorized_error_response_body.py +33 -0
  1329. samsara/types/ifta_get_ifta_jurisdiction_reports_bad_gateway_error_response_body.py +33 -0
  1330. samsara/types/ifta_get_ifta_jurisdiction_reports_gateway_timeout_error_response_body.py +33 -0
  1331. samsara/types/ifta_get_ifta_jurisdiction_reports_internal_server_error_response_body.py +33 -0
  1332. samsara/types/ifta_get_ifta_jurisdiction_reports_method_not_allowed_error_response_body.py +33 -0
  1333. samsara/types/ifta_get_ifta_jurisdiction_reports_not_found_error_response_body.py +33 -0
  1334. samsara/types/ifta_get_ifta_jurisdiction_reports_not_implemented_error_response_body.py +33 -0
  1335. samsara/types/ifta_get_ifta_jurisdiction_reports_response_body.py +20 -0
  1336. samsara/types/ifta_get_ifta_jurisdiction_reports_service_unavailable_error_response_body.py +33 -0
  1337. samsara/types/ifta_get_ifta_jurisdiction_reports_too_many_requests_error_response_body.py +33 -0
  1338. samsara/types/ifta_get_ifta_jurisdiction_reports_unauthorized_error_response_body.py +33 -0
  1339. samsara/types/ifta_get_ifta_vehicle_reports_bad_gateway_error_response_body.py +33 -0
  1340. samsara/types/ifta_get_ifta_vehicle_reports_gateway_timeout_error_response_body.py +33 -0
  1341. samsara/types/ifta_get_ifta_vehicle_reports_internal_server_error_response_body.py +33 -0
  1342. samsara/types/ifta_get_ifta_vehicle_reports_method_not_allowed_error_response_body.py +33 -0
  1343. samsara/types/ifta_get_ifta_vehicle_reports_not_found_error_response_body.py +33 -0
  1344. samsara/types/ifta_get_ifta_vehicle_reports_not_implemented_error_response_body.py +33 -0
  1345. samsara/types/ifta_get_ifta_vehicle_reports_response_body.py +22 -0
  1346. samsara/types/ifta_get_ifta_vehicle_reports_service_unavailable_error_response_body.py +33 -0
  1347. samsara/types/ifta_get_ifta_vehicle_reports_too_many_requests_error_response_body.py +33 -0
  1348. samsara/types/ifta_get_ifta_vehicle_reports_unauthorized_error_response_body.py +33 -0
  1349. samsara/types/ifta_jurisdiction_report_data_object_response_body.py +48 -0
  1350. samsara/types/ifta_jurisdiction_summary_object_response_body.py +45 -0
  1351. samsara/types/ifta_report_troubleshooting_object_response_body.py +49 -0
  1352. samsara/types/ifta_vehicle_report_data_object_response_body.py +48 -0
  1353. samsara/types/ifta_vehicle_report_object_response_body.py +30 -0
  1354. samsara/types/in_app_notification_options_object_request_body.py +49 -0
  1355. samsara/types/in_app_notification_options_object_response_body.py +49 -0
  1356. samsara/types/inactivity_response_body.py +28 -0
  1357. samsara/types/inattentive_driving_detection_alert_settings_object_response_body.py +54 -0
  1358. samsara/types/inattentive_driving_detection_alert_settings_object_response_body_severity.py +7 -0
  1359. samsara/types/inside_geofence_data_response_body.py +28 -0
  1360. samsara/types/inside_geofence_trigger_details_object_request_body.py +32 -0
  1361. samsara/types/inside_geofence_trigger_details_object_response_body.py +32 -0
  1362. samsara/types/issue_created_response_body.py +24 -0
  1363. samsara/types/issue_response_object_response_body.py +101 -0
  1364. samsara/types/issue_response_object_response_body_priority.py +5 -0
  1365. samsara/types/issue_response_object_response_body_status.py +7 -0
  1366. samsara/types/issue_source_object_response_body.py +32 -0
  1367. samsara/types/issue_source_object_response_body_type.py +5 -0
  1368. samsara/types/issues_get_issues_bad_gateway_error_response_body.py +33 -0
  1369. samsara/types/issues_get_issues_gateway_timeout_error_response_body.py +33 -0
  1370. samsara/types/issues_get_issues_internal_server_error_response_body.py +33 -0
  1371. samsara/types/issues_get_issues_method_not_allowed_error_response_body.py +33 -0
  1372. samsara/types/issues_get_issues_not_found_error_response_body.py +33 -0
  1373. samsara/types/issues_get_issues_not_implemented_error_response_body.py +33 -0
  1374. samsara/types/issues_get_issues_response_body.py +23 -0
  1375. samsara/types/issues_get_issues_service_unavailable_error_response_body.py +33 -0
  1376. samsara/types/issues_get_issues_stream_bad_gateway_error_response_body.py +33 -0
  1377. samsara/types/issues_get_issues_stream_gateway_timeout_error_response_body.py +33 -0
  1378. samsara/types/issues_get_issues_stream_internal_server_error_response_body.py +33 -0
  1379. samsara/types/issues_get_issues_stream_method_not_allowed_error_response_body.py +33 -0
  1380. samsara/types/issues_get_issues_stream_not_found_error_response_body.py +33 -0
  1381. samsara/types/issues_get_issues_stream_not_implemented_error_response_body.py +33 -0
  1382. samsara/types/issues_get_issues_stream_response_body.py +26 -0
  1383. samsara/types/issues_get_issues_stream_service_unavailable_error_response_body.py +33 -0
  1384. samsara/types/issues_get_issues_stream_too_many_requests_error_response_body.py +33 -0
  1385. samsara/types/issues_get_issues_stream_unauthorized_error_response_body.py +33 -0
  1386. samsara/types/issues_get_issues_too_many_requests_error_response_body.py +33 -0
  1387. samsara/types/issues_get_issues_unauthorized_error_response_body.py +33 -0
  1388. samsara/types/issues_patch_issue_bad_gateway_error_response_body.py +33 -0
  1389. samsara/types/issues_patch_issue_gateway_timeout_error_response_body.py +33 -0
  1390. samsara/types/issues_patch_issue_internal_server_error_response_body.py +33 -0
  1391. samsara/types/issues_patch_issue_method_not_allowed_error_response_body.py +33 -0
  1392. samsara/types/issues_patch_issue_not_found_error_response_body.py +33 -0
  1393. samsara/types/issues_patch_issue_not_implemented_error_response_body.py +33 -0
  1394. samsara/types/issues_patch_issue_response_body.py +20 -0
  1395. samsara/types/issues_patch_issue_service_unavailable_error_response_body.py +33 -0
  1396. samsara/types/issues_patch_issue_too_many_requests_error_response_body.py +33 -0
  1397. samsara/types/issues_patch_issue_unauthorized_error_response_body.py +33 -0
  1398. samsara/types/jamming_detected_response_body.py +28 -0
  1399. samsara/types/last_known_location_response_response_body.py +36 -0
  1400. samsara/types/list_addresses_response.py +30 -0
  1401. samsara/types/list_carrier_proposed_assignment_response.py +30 -0
  1402. samsara/types/list_contacts_response.py +26 -0
  1403. samsara/types/list_drivers_response.py +26 -0
  1404. samsara/types/list_tags_response.py +26 -0
  1405. samsara/types/list_uploaded_media_object_response_body.py +23 -0
  1406. samsara/types/list_user_roles_response.py +30 -0
  1407. samsara/types/list_users_response.py +30 -0
  1408. samsara/types/live_sharing_link_full_response_object_response_body.py +69 -0
  1409. samsara/types/live_sharing_link_full_response_object_response_body_type.py +7 -0
  1410. samsara/types/live_sharing_link_response_object_response_body.py +40 -0
  1411. samsara/types/live_sharing_links_create_live_sharing_link_bad_gateway_error_response_body.py +33 -0
  1412. samsara/types/live_sharing_links_create_live_sharing_link_gateway_timeout_error_response_body.py +33 -0
  1413. samsara/types/live_sharing_links_create_live_sharing_link_internal_server_error_response_body.py +33 -0
  1414. samsara/types/live_sharing_links_create_live_sharing_link_method_not_allowed_error_response_body.py +33 -0
  1415. samsara/types/live_sharing_links_create_live_sharing_link_not_found_error_response_body.py +33 -0
  1416. samsara/types/live_sharing_links_create_live_sharing_link_not_implemented_error_response_body.py +33 -0
  1417. samsara/types/live_sharing_links_create_live_sharing_link_response_body.py +20 -0
  1418. samsara/types/live_sharing_links_create_live_sharing_link_service_unavailable_error_response_body.py +33 -0
  1419. samsara/types/live_sharing_links_create_live_sharing_link_too_many_requests_error_response_body.py +33 -0
  1420. samsara/types/live_sharing_links_create_live_sharing_link_unauthorized_error_response_body.py +33 -0
  1421. samsara/types/live_sharing_links_delete_live_sharing_link_bad_gateway_error_response_body.py +33 -0
  1422. samsara/types/live_sharing_links_delete_live_sharing_link_gateway_timeout_error_response_body.py +33 -0
  1423. samsara/types/live_sharing_links_delete_live_sharing_link_internal_server_error_response_body.py +33 -0
  1424. samsara/types/live_sharing_links_delete_live_sharing_link_method_not_allowed_error_response_body.py +33 -0
  1425. samsara/types/live_sharing_links_delete_live_sharing_link_not_found_error_response_body.py +33 -0
  1426. samsara/types/live_sharing_links_delete_live_sharing_link_not_implemented_error_response_body.py +33 -0
  1427. samsara/types/live_sharing_links_delete_live_sharing_link_service_unavailable_error_response_body.py +33 -0
  1428. samsara/types/live_sharing_links_delete_live_sharing_link_too_many_requests_error_response_body.py +33 -0
  1429. samsara/types/live_sharing_links_delete_live_sharing_link_unauthorized_error_response_body.py +33 -0
  1430. samsara/types/live_sharing_links_get_live_sharing_links_bad_gateway_error_response_body.py +33 -0
  1431. samsara/types/live_sharing_links_get_live_sharing_links_gateway_timeout_error_response_body.py +33 -0
  1432. samsara/types/live_sharing_links_get_live_sharing_links_internal_server_error_response_body.py +33 -0
  1433. samsara/types/live_sharing_links_get_live_sharing_links_method_not_allowed_error_response_body.py +33 -0
  1434. samsara/types/live_sharing_links_get_live_sharing_links_not_found_error_response_body.py +33 -0
  1435. samsara/types/live_sharing_links_get_live_sharing_links_not_implemented_error_response_body.py +33 -0
  1436. samsara/types/live_sharing_links_get_live_sharing_links_response_body.py +22 -0
  1437. samsara/types/live_sharing_links_get_live_sharing_links_service_unavailable_error_response_body.py +33 -0
  1438. samsara/types/live_sharing_links_get_live_sharing_links_too_many_requests_error_response_body.py +33 -0
  1439. samsara/types/live_sharing_links_get_live_sharing_links_unauthorized_error_response_body.py +33 -0
  1440. samsara/types/live_sharing_links_update_live_sharing_link_bad_gateway_error_response_body.py +33 -0
  1441. samsara/types/live_sharing_links_update_live_sharing_link_gateway_timeout_error_response_body.py +33 -0
  1442. samsara/types/live_sharing_links_update_live_sharing_link_internal_server_error_response_body.py +33 -0
  1443. samsara/types/live_sharing_links_update_live_sharing_link_method_not_allowed_error_response_body.py +33 -0
  1444. samsara/types/live_sharing_links_update_live_sharing_link_not_found_error_response_body.py +33 -0
  1445. samsara/types/live_sharing_links_update_live_sharing_link_not_implemented_error_response_body.py +33 -0
  1446. samsara/types/live_sharing_links_update_live_sharing_link_response_body.py +20 -0
  1447. samsara/types/live_sharing_links_update_live_sharing_link_service_unavailable_error_response_body.py +33 -0
  1448. samsara/types/live_sharing_links_update_live_sharing_link_too_many_requests_error_response_body.py +33 -0
  1449. samsara/types/live_sharing_links_update_live_sharing_link_unauthorized_error_response_body.py +33 -0
  1450. samsara/types/location.py +31 -0
  1451. samsara/types/location_and_speed_get_location_and_speed_bad_gateway_error_response_body.py +33 -0
  1452. samsara/types/location_and_speed_get_location_and_speed_gateway_timeout_error_response_body.py +33 -0
  1453. samsara/types/location_and_speed_get_location_and_speed_internal_server_error_response_body.py +33 -0
  1454. samsara/types/location_and_speed_get_location_and_speed_method_not_allowed_error_response_body.py +33 -0
  1455. samsara/types/location_and_speed_get_location_and_speed_not_found_error_response_body.py +33 -0
  1456. samsara/types/location_and_speed_get_location_and_speed_not_implemented_error_response_body.py +33 -0
  1457. samsara/types/location_and_speed_get_location_and_speed_response_body.py +26 -0
  1458. samsara/types/location_and_speed_get_location_and_speed_service_unavailable_error_response_body.py +33 -0
  1459. samsara/types/location_and_speed_get_location_and_speed_too_many_requests_error_response_body.py +33 -0
  1460. samsara/types/location_and_speed_get_location_and_speed_unauthorized_error_response_body.py +33 -0
  1461. samsara/types/location_and_speed_response_response_body.py +35 -0
  1462. samsara/types/location_object_request_body.py +49 -0
  1463. samsara/types/location_object_request_body_address_types_item.py +17 -0
  1464. samsara/types/location_object_response_body.py +49 -0
  1465. samsara/types/location_object_response_body_address_types_item.py +17 -0
  1466. samsara/types/location_response_response_body.py +49 -0
  1467. samsara/types/log_meta_data_object_response_body.py +113 -0
  1468. samsara/types/media_object_response_body.py +65 -0
  1469. samsara/types/media_object_response_body_input.py +5 -0
  1470. samsara/types/media_object_response_body_media_type.py +5 -0
  1471. samsara/types/media_object_response_body_status.py +5 -0
  1472. samsara/types/media_retrieval_get_media_retrieval_bad_gateway_error_response_body.py +33 -0
  1473. samsara/types/media_retrieval_get_media_retrieval_gateway_timeout_error_response_body.py +33 -0
  1474. samsara/types/media_retrieval_get_media_retrieval_internal_server_error_response_body.py +33 -0
  1475. samsara/types/media_retrieval_get_media_retrieval_method_not_allowed_error_response_body.py +33 -0
  1476. samsara/types/media_retrieval_get_media_retrieval_not_found_error_response_body.py +33 -0
  1477. samsara/types/media_retrieval_get_media_retrieval_not_implemented_error_response_body.py +33 -0
  1478. samsara/types/media_retrieval_get_media_retrieval_response_body.py +20 -0
  1479. samsara/types/media_retrieval_get_media_retrieval_service_unavailable_error_response_body.py +33 -0
  1480. samsara/types/media_retrieval_get_media_retrieval_too_many_requests_error_response_body.py +33 -0
  1481. samsara/types/media_retrieval_get_media_retrieval_unauthorized_error_response_body.py +33 -0
  1482. samsara/types/media_retrieval_list_uploaded_media_bad_gateway_error_response_body.py +33 -0
  1483. samsara/types/media_retrieval_list_uploaded_media_gateway_timeout_error_response_body.py +33 -0
  1484. samsara/types/media_retrieval_list_uploaded_media_internal_server_error_response_body.py +33 -0
  1485. samsara/types/media_retrieval_list_uploaded_media_method_not_allowed_error_response_body.py +33 -0
  1486. samsara/types/media_retrieval_list_uploaded_media_not_found_error_response_body.py +33 -0
  1487. samsara/types/media_retrieval_list_uploaded_media_not_implemented_error_response_body.py +33 -0
  1488. samsara/types/media_retrieval_list_uploaded_media_response_body.py +22 -0
  1489. samsara/types/media_retrieval_list_uploaded_media_service_unavailable_error_response_body.py +33 -0
  1490. samsara/types/media_retrieval_list_uploaded_media_too_many_requests_error_response_body.py +33 -0
  1491. samsara/types/media_retrieval_list_uploaded_media_unauthorized_error_response_body.py +33 -0
  1492. samsara/types/media_retrieval_post_media_retrieval_bad_gateway_error_response_body.py +33 -0
  1493. samsara/types/media_retrieval_post_media_retrieval_gateway_timeout_error_response_body.py +33 -0
  1494. samsara/types/media_retrieval_post_media_retrieval_internal_server_error_response_body.py +33 -0
  1495. samsara/types/media_retrieval_post_media_retrieval_method_not_allowed_error_response_body.py +33 -0
  1496. samsara/types/media_retrieval_post_media_retrieval_not_found_error_response_body.py +33 -0
  1497. samsara/types/media_retrieval_post_media_retrieval_not_implemented_error_response_body.py +33 -0
  1498. samsara/types/media_retrieval_post_media_retrieval_response_body.py +20 -0
  1499. samsara/types/media_retrieval_post_media_retrieval_service_unavailable_error_response_body.py +33 -0
  1500. samsara/types/media_retrieval_post_media_retrieval_too_many_requests_error_response_body.py +33 -0
  1501. samsara/types/media_retrieval_post_media_retrieval_unauthorized_error_response_body.py +33 -0
  1502. samsara/types/minimal_route_audit_logs_response_body.py +27 -0
  1503. samsara/types/minimal_route_stop_audit_logs_response_body.py +96 -0
  1504. samsara/types/minimal_route_stop_audit_logs_response_body_state.py +7 -0
  1505. samsara/types/minimal_route_stop_response_body.py +82 -0
  1506. samsara/types/minimal_route_stop_response_body_state.py +7 -0
  1507. samsara/types/mobile_usage_detection_alert_settings_object_response_body.py +44 -0
  1508. samsara/types/motion_detected_response_body.py +28 -0
  1509. samsara/types/multiple_choice_field_type_meta_data_object_response_body.py +22 -0
  1510. samsara/types/multiple_choice_value_object_request_body.py +27 -0
  1511. samsara/types/multiple_choice_value_object_response_body.py +27 -0
  1512. samsara/types/number_field_type_meta_data_object_response_body.py +30 -0
  1513. samsara/types/operational_settings_object_request_body.py +39 -0
  1514. samsara/types/operational_settings_object_request_body_time_range_type.py +7 -0
  1515. samsara/types/operational_settings_object_response_body.py +41 -0
  1516. samsara/types/operational_settings_object_response_body_time_range_type.py +7 -0
  1517. samsara/types/organization_info_carrier_settings.py +44 -0
  1518. samsara/types/organization_info_object.py +37 -0
  1519. samsara/types/organization_info_response.py +24 -0
  1520. samsara/types/out_of_route_details_object_request_body.py +35 -0
  1521. samsara/types/out_of_route_details_object_response_body.py +35 -0
  1522. samsara/types/out_of_route_response_body.py +28 -0
  1523. samsara/types/outside_geofence_data_response_body.py +28 -0
  1524. samsara/types/outside_geofence_trigger_details_object_request_body.py +32 -0
  1525. samsara/types/outside_geofence_trigger_details_object_response_body.py +32 -0
  1526. samsara/types/pagination_response.py +33 -0
  1527. samsara/types/panic_button_details_object_request_body.py +30 -0
  1528. samsara/types/panic_button_details_object_response_body.py +30 -0
  1529. samsara/types/panic_button_response_body.py +28 -0
  1530. samsara/types/parent_tag.py +26 -0
  1531. samsara/types/parent_tag_id.py +3 -0
  1532. samsara/types/parent_tag_name.py +3 -0
  1533. samsara/types/patch_driver_trailer_assignments_response_body_response_body.py +62 -0
  1534. samsara/types/patch_driver_vehicle_assignments_v_2_request_body_metadata_request_body.py +30 -0
  1535. samsara/types/patch_driver_vehicle_assignments_v_2_response_body_response_body.py +26 -0
  1536. samsara/types/patch_issue_request_body_assigned_to_request_body.py +31 -0
  1537. samsara/types/patch_response_workflow_configuration_object_response_body.py +75 -0
  1538. samsara/types/patch_shipping_docs_response_body_response_body.py +93 -0
  1539. samsara/types/pending_duty_status_durations_object_response_body.py +79 -0
  1540. samsara/types/person_detected_response_body.py +28 -0
  1541. samsara/types/photo_value_object_request_body.py +27 -0
  1542. samsara/types/photo_value_object_response_body.py +27 -0
  1543. samsara/types/policy_violations_detection_alert_settings_object_response_body.py +68 -0
  1544. samsara/types/policy_violations_detection_alert_settings_object_response_body_events_available_for_testing_item.py +8 -0
  1545. samsara/types/policy_violations_detection_alert_settings_object_response_body_events_to_coach_item.py +16 -0
  1546. samsara/types/polygon_request_body.py +32 -0
  1547. samsara/types/polygon_response_body.py +32 -0
  1548. samsara/types/post_driver_trailer_assignments_response_body_response_body.py +53 -0
  1549. samsara/types/post_driver_vehicle_assignments_v_2_request_body_metadata_request_body.py +30 -0
  1550. samsara/types/post_driver_vehicle_assignments_v_2_response_body_response_body.py +26 -0
  1551. samsara/types/post_fuel_purchase_request_body_price_request_body.py +34 -0
  1552. samsara/types/post_fuel_purchase_request_body_price_request_body_currency.py +7 -0
  1553. samsara/types/post_fuel_purchase_response_body_response_body.py +28 -0
  1554. samsara/types/post_media_retrieval_object_response_body.py +29 -0
  1555. samsara/types/post_response_res_workflow_configuration_object_response_body.py +75 -0
  1556. samsara/types/push_notification_options_object_request_body.py +28 -0
  1557. samsara/types/push_notification_options_object_response_body.py +28 -0
  1558. samsara/types/qr_code_response_object_response_body.py +35 -0
  1559. samsara/types/recipient_object_request_body.py +59 -0
  1560. samsara/types/recipient_object_request_body_notification_types_item.py +5 -0
  1561. samsara/types/recipient_object_request_body_type.py +5 -0
  1562. samsara/types/recipient_object_response_body.py +59 -0
  1563. samsara/types/recipient_object_response_body_notification_types_item.py +5 -0
  1564. samsara/types/recipient_object_response_body_type.py +5 -0
  1565. samsara/types/reefer_temperature_response_body.py +28 -0
  1566. samsara/types/resolved_by.py +31 -0
  1567. samsara/types/reverse_geo.py +30 -0
  1568. samsara/types/rolling_stop_detection_alert_settings_object_response_body.py +37 -0
  1569. samsara/types/route_changes_response_body.py +25 -0
  1570. samsara/types/route_feed_object_response_body.py +48 -0
  1571. samsara/types/route_feed_object_response_body_operation.py +19 -0
  1572. samsara/types/route_feed_object_response_body_source.py +5 -0
  1573. samsara/types/route_settings_request_body.py +43 -0
  1574. samsara/types/route_settings_request_body_route_completion_condition.py +7 -0
  1575. samsara/types/route_settings_request_body_route_starting_condition.py +7 -0
  1576. samsara/types/route_settings_response_body.py +43 -0
  1577. samsara/types/route_settings_response_body_route_completion_condition.py +7 -0
  1578. samsara/types/route_settings_response_body_route_starting_condition.py +7 -0
  1579. samsara/types/route_stop_details_object_response_body.py +47 -0
  1580. samsara/types/route_stop_details_object_response_body_operation.py +5 -0
  1581. samsara/types/route_stop_estimated_arrival_details_object_request_body.py +47 -0
  1582. samsara/types/route_stop_estimated_arrival_details_object_response_body.py +47 -0
  1583. samsara/types/route_stop_eta_response_body.py +28 -0
  1584. samsara/types/routes_create_route_bad_gateway_error_response_body.py +33 -0
  1585. samsara/types/routes_create_route_gateway_timeout_error_response_body.py +33 -0
  1586. samsara/types/routes_create_route_internal_server_error_response_body.py +33 -0
  1587. samsara/types/routes_create_route_method_not_allowed_error_response_body.py +33 -0
  1588. samsara/types/routes_create_route_not_found_error_response_body.py +33 -0
  1589. samsara/types/routes_create_route_not_implemented_error_response_body.py +33 -0
  1590. samsara/types/routes_create_route_response_body.py +20 -0
  1591. samsara/types/routes_create_route_service_unavailable_error_response_body.py +33 -0
  1592. samsara/types/routes_create_route_too_many_requests_error_response_body.py +33 -0
  1593. samsara/types/routes_create_route_unauthorized_error_response_body.py +33 -0
  1594. samsara/types/routes_delete_route_bad_gateway_error_response_body.py +33 -0
  1595. samsara/types/routes_delete_route_gateway_timeout_error_response_body.py +33 -0
  1596. samsara/types/routes_delete_route_internal_server_error_response_body.py +33 -0
  1597. samsara/types/routes_delete_route_method_not_allowed_error_response_body.py +33 -0
  1598. samsara/types/routes_delete_route_not_found_error_response_body.py +33 -0
  1599. samsara/types/routes_delete_route_not_implemented_error_response_body.py +33 -0
  1600. samsara/types/routes_delete_route_service_unavailable_error_response_body.py +33 -0
  1601. samsara/types/routes_delete_route_too_many_requests_error_response_body.py +33 -0
  1602. samsara/types/routes_delete_route_unauthorized_error_response_body.py +33 -0
  1603. samsara/types/routes_fetch_route_bad_gateway_error_response_body.py +33 -0
  1604. samsara/types/routes_fetch_route_gateway_timeout_error_response_body.py +33 -0
  1605. samsara/types/routes_fetch_route_internal_server_error_response_body.py +33 -0
  1606. samsara/types/routes_fetch_route_method_not_allowed_error_response_body.py +33 -0
  1607. samsara/types/routes_fetch_route_not_found_error_response_body.py +33 -0
  1608. samsara/types/routes_fetch_route_not_implemented_error_response_body.py +33 -0
  1609. samsara/types/routes_fetch_route_response_body.py +20 -0
  1610. samsara/types/routes_fetch_route_service_unavailable_error_response_body.py +33 -0
  1611. samsara/types/routes_fetch_route_too_many_requests_error_response_body.py +33 -0
  1612. samsara/types/routes_fetch_route_unauthorized_error_response_body.py +33 -0
  1613. samsara/types/routes_fetch_routes_bad_gateway_error_response_body.py +33 -0
  1614. samsara/types/routes_fetch_routes_gateway_timeout_error_response_body.py +33 -0
  1615. samsara/types/routes_fetch_routes_internal_server_error_response_body.py +33 -0
  1616. samsara/types/routes_fetch_routes_method_not_allowed_error_response_body.py +33 -0
  1617. samsara/types/routes_fetch_routes_not_found_error_response_body.py +33 -0
  1618. samsara/types/routes_fetch_routes_not_implemented_error_response_body.py +33 -0
  1619. samsara/types/routes_fetch_routes_response_body.py +26 -0
  1620. samsara/types/routes_fetch_routes_service_unavailable_error_response_body.py +33 -0
  1621. samsara/types/routes_fetch_routes_too_many_requests_error_response_body.py +33 -0
  1622. samsara/types/routes_fetch_routes_unauthorized_error_response_body.py +33 -0
  1623. samsara/types/routes_get_routes_feed_bad_gateway_error_response_body.py +33 -0
  1624. samsara/types/routes_get_routes_feed_gateway_timeout_error_response_body.py +33 -0
  1625. samsara/types/routes_get_routes_feed_internal_server_error_response_body.py +33 -0
  1626. samsara/types/routes_get_routes_feed_method_not_allowed_error_response_body.py +33 -0
  1627. samsara/types/routes_get_routes_feed_not_found_error_response_body.py +33 -0
  1628. samsara/types/routes_get_routes_feed_not_implemented_error_response_body.py +33 -0
  1629. samsara/types/routes_get_routes_feed_response_body.py +26 -0
  1630. samsara/types/routes_get_routes_feed_service_unavailable_error_response_body.py +33 -0
  1631. samsara/types/routes_get_routes_feed_too_many_requests_error_response_body.py +33 -0
  1632. samsara/types/routes_get_routes_feed_unauthorized_error_response_body.py +33 -0
  1633. samsara/types/routes_patch_route_bad_gateway_error_response_body.py +33 -0
  1634. samsara/types/routes_patch_route_gateway_timeout_error_response_body.py +33 -0
  1635. samsara/types/routes_patch_route_internal_server_error_response_body.py +33 -0
  1636. samsara/types/routes_patch_route_method_not_allowed_error_response_body.py +33 -0
  1637. samsara/types/routes_patch_route_not_found_error_response_body.py +33 -0
  1638. samsara/types/routes_patch_route_not_implemented_error_response_body.py +33 -0
  1639. samsara/types/routes_patch_route_response_body.py +20 -0
  1640. samsara/types/routes_patch_route_service_unavailable_error_response_body.py +33 -0
  1641. samsara/types/routes_patch_route_too_many_requests_error_response_body.py +33 -0
  1642. samsara/types/routes_patch_route_unauthorized_error_response_body.py +33 -0
  1643. samsara/types/routes_single_use_address_object_request_body.py +36 -0
  1644. samsara/types/routes_single_use_address_object_response_body.py +36 -0
  1645. samsara/types/routes_stop_response_object_response_body.py +137 -0
  1646. samsara/types/routes_stop_response_object_response_body_state.py +7 -0
  1647. samsara/types/safety_event.py +58 -0
  1648. samsara/types/safety_event_activity_feed_item_response_body.py +41 -0
  1649. samsara/types/safety_event_activity_feed_item_response_body_type.py +8 -0
  1650. samsara/types/safety_event_behavior_label.py +28 -0
  1651. samsara/types/safety_event_behavior_label_name.py +3 -0
  1652. samsara/types/safety_event_behavior_label_source.py +5 -0
  1653. samsara/types/safety_event_behavior_label_type.py +36 -0
  1654. samsara/types/safety_event_behavior_labels.py +7 -0
  1655. samsara/types/safety_event_behavior_labels_response_body.py +32 -0
  1656. samsara/types/safety_event_behavior_labels_response_body_type.py +43 -0
  1657. samsara/types/safety_event_coaching_state.py +20 -0
  1658. samsara/types/safety_event_download_forward_video_url.py +3 -0
  1659. samsara/types/safety_event_download_inward_video_url.py +3 -0
  1660. samsara/types/safety_event_download_tracked_inward_video_url.py +3 -0
  1661. samsara/types/safety_event_driver_object_response_body.py +26 -0
  1662. samsara/types/safety_event_id.py +3 -0
  1663. samsara/types/safety_event_max_acceleration_g_force.py +3 -0
  1664. samsara/types/safety_event_object_response_body.py +46 -0
  1665. samsara/types/safety_event_time.py +3 -0
  1666. samsara/types/safety_event_vehicle_object_response_body.py +26 -0
  1667. samsara/types/safety_events_get_safety_activity_event_feed_bad_gateway_error_response_body.py +33 -0
  1668. samsara/types/safety_events_get_safety_activity_event_feed_gateway_timeout_error_response_body.py +33 -0
  1669. samsara/types/safety_events_get_safety_activity_event_feed_internal_server_error_response_body.py +33 -0
  1670. samsara/types/safety_events_get_safety_activity_event_feed_method_not_allowed_error_response_body.py +33 -0
  1671. samsara/types/safety_events_get_safety_activity_event_feed_not_found_error_response_body.py +33 -0
  1672. samsara/types/safety_events_get_safety_activity_event_feed_not_implemented_error_response_body.py +33 -0
  1673. samsara/types/safety_events_get_safety_activity_event_feed_response_body.py +26 -0
  1674. samsara/types/safety_events_get_safety_activity_event_feed_service_unavailable_error_response_body.py +33 -0
  1675. samsara/types/safety_events_get_safety_activity_event_feed_too_many_requests_error_response_body.py +33 -0
  1676. samsara/types/safety_events_get_safety_activity_event_feed_unauthorized_error_response_body.py +33 -0
  1677. samsara/types/safety_events_list_response.py +26 -0
  1678. samsara/types/safety_score_configuration_settings_object_response_body.py +226 -0
  1679. samsara/types/safety_settings_get_safety_settings_bad_gateway_error_response_body.py +33 -0
  1680. samsara/types/safety_settings_get_safety_settings_gateway_timeout_error_response_body.py +33 -0
  1681. samsara/types/safety_settings_get_safety_settings_internal_server_error_response_body.py +33 -0
  1682. samsara/types/safety_settings_get_safety_settings_method_not_allowed_error_response_body.py +33 -0
  1683. samsara/types/safety_settings_get_safety_settings_not_found_error_response_body.py +33 -0
  1684. samsara/types/safety_settings_get_safety_settings_not_implemented_error_response_body.py +33 -0
  1685. samsara/types/safety_settings_get_safety_settings_response_body.py +23 -0
  1686. samsara/types/safety_settings_get_safety_settings_service_unavailable_error_response_body.py +33 -0
  1687. samsara/types/safety_settings_get_safety_settings_too_many_requests_error_response_body.py +33 -0
  1688. samsara/types/safety_settings_get_safety_settings_unauthorized_error_response_body.py +33 -0
  1689. samsara/types/safety_settings_object_response_body.py +91 -0
  1690. samsara/types/safety_settings_object_response_body_default_vehicle_type.py +7 -0
  1691. samsara/types/scanned_document_value_object_request_body.py +27 -0
  1692. samsara/types/scanned_document_value_object_response_body.py +27 -0
  1693. samsara/types/scheduled_maintenance_by_engine_hours_details_object_request_body.py +33 -0
  1694. samsara/types/scheduled_maintenance_by_engine_hours_details_object_response_body.py +33 -0
  1695. samsara/types/scheduled_maintenance_by_engine_hours_response_body.py +28 -0
  1696. samsara/types/scheduled_maintenance_data_response_body.py +28 -0
  1697. samsara/types/scheduled_maintenance_odometer_data_response_body.py +28 -0
  1698. samsara/types/scheduled_maintenance_odometer_trigger_details_object_request_body.py +33 -0
  1699. samsara/types/scheduled_maintenance_odometer_trigger_details_object_response_body.py +33 -0
  1700. samsara/types/scheduled_maintenance_trigger_details_object_request_body.py +33 -0
  1701. samsara/types/scheduled_maintenance_trigger_details_object_response_body.py +33 -0
  1702. samsara/types/scope_object_request_body.py +52 -0
  1703. samsara/types/scope_object_response_body.py +52 -0
  1704. samsara/types/sensor.py +32 -0
  1705. samsara/types/sensor_response_body.py +36 -0
  1706. samsara/types/serial.py +3 -0
  1707. samsara/types/service_task_definition_object_response_body.py +59 -0
  1708. samsara/types/service_task_instance_input_object_request_body.py +53 -0
  1709. samsara/types/service_task_instance_input_object_request_body_status.py +7 -0
  1710. samsara/types/service_task_instance_object_response_body.py +53 -0
  1711. samsara/types/service_task_instance_object_response_body_status.py +7 -0
  1712. samsara/types/settings_compliance_response_object_response_body.py +93 -0
  1713. samsara/types/settings_get_compliance_settings_bad_gateway_error_response_body.py +33 -0
  1714. samsara/types/settings_get_compliance_settings_gateway_timeout_error_response_body.py +33 -0
  1715. samsara/types/settings_get_compliance_settings_internal_server_error_response_body.py +33 -0
  1716. samsara/types/settings_get_compliance_settings_method_not_allowed_error_response_body.py +33 -0
  1717. samsara/types/settings_get_compliance_settings_not_found_error_response_body.py +33 -0
  1718. samsara/types/settings_get_compliance_settings_not_implemented_error_response_body.py +33 -0
  1719. samsara/types/settings_get_compliance_settings_response_body.py +20 -0
  1720. samsara/types/settings_get_compliance_settings_service_unavailable_error_response_body.py +33 -0
  1721. samsara/types/settings_get_compliance_settings_too_many_requests_error_response_body.py +33 -0
  1722. samsara/types/settings_get_compliance_settings_unauthorized_error_response_body.py +33 -0
  1723. samsara/types/settings_get_driver_app_settings_bad_gateway_error_response_body.py +33 -0
  1724. samsara/types/settings_get_driver_app_settings_gateway_timeout_error_response_body.py +33 -0
  1725. samsara/types/settings_get_driver_app_settings_internal_server_error_response_body.py +33 -0
  1726. samsara/types/settings_get_driver_app_settings_method_not_allowed_error_response_body.py +33 -0
  1727. samsara/types/settings_get_driver_app_settings_not_found_error_response_body.py +33 -0
  1728. samsara/types/settings_get_driver_app_settings_not_implemented_error_response_body.py +33 -0
  1729. samsara/types/settings_get_driver_app_settings_response_body.py +20 -0
  1730. samsara/types/settings_get_driver_app_settings_service_unavailable_error_response_body.py +33 -0
  1731. samsara/types/settings_get_driver_app_settings_too_many_requests_error_response_body.py +33 -0
  1732. samsara/types/settings_get_driver_app_settings_unauthorized_error_response_body.py +33 -0
  1733. samsara/types/settings_patch_compliance_settings_bad_gateway_error_response_body.py +33 -0
  1734. samsara/types/settings_patch_compliance_settings_gateway_timeout_error_response_body.py +33 -0
  1735. samsara/types/settings_patch_compliance_settings_internal_server_error_response_body.py +33 -0
  1736. samsara/types/settings_patch_compliance_settings_method_not_allowed_error_response_body.py +33 -0
  1737. samsara/types/settings_patch_compliance_settings_not_found_error_response_body.py +33 -0
  1738. samsara/types/settings_patch_compliance_settings_not_implemented_error_response_body.py +33 -0
  1739. samsara/types/settings_patch_compliance_settings_response_body.py +20 -0
  1740. samsara/types/settings_patch_compliance_settings_service_unavailable_error_response_body.py +33 -0
  1741. samsara/types/settings_patch_compliance_settings_too_many_requests_error_response_body.py +33 -0
  1742. samsara/types/settings_patch_compliance_settings_unauthorized_error_response_body.py +33 -0
  1743. samsara/types/settings_patch_driver_app_settings_bad_gateway_error_response_body.py +33 -0
  1744. samsara/types/settings_patch_driver_app_settings_gateway_timeout_error_response_body.py +33 -0
  1745. samsara/types/settings_patch_driver_app_settings_internal_server_error_response_body.py +33 -0
  1746. samsara/types/settings_patch_driver_app_settings_method_not_allowed_error_response_body.py +33 -0
  1747. samsara/types/settings_patch_driver_app_settings_not_found_error_response_body.py +33 -0
  1748. samsara/types/settings_patch_driver_app_settings_not_implemented_error_response_body.py +33 -0
  1749. samsara/types/settings_patch_driver_app_settings_response_body.py +20 -0
  1750. samsara/types/settings_patch_driver_app_settings_service_unavailable_error_response_body.py +33 -0
  1751. samsara/types/settings_patch_driver_app_settings_too_many_requests_error_response_body.py +33 -0
  1752. samsara/types/settings_patch_driver_app_settings_unauthorized_error_response_body.py +33 -0
  1753. samsara/types/settings_response_body.py +31 -0
  1754. samsara/types/severe_speeding_started_object_response_body.py +38 -0
  1755. samsara/types/severe_speeding_started_response_object_response_body.py +24 -0
  1756. samsara/types/signatory_user_object_response_body.py +26 -0
  1757. samsara/types/signature_field_type_meta_data_object_response_body.py +30 -0
  1758. samsara/types/signature_value_object_request_body.py +46 -0
  1759. samsara/types/signature_value_object_response_body.py +46 -0
  1760. samsara/types/site_gateway_disconnected_response_body.py +28 -0
  1761. samsara/types/specific_vehicle_fault_code_object_request_body.py +34 -0
  1762. samsara/types/specific_vehicle_fault_code_object_request_body_type.py +7 -0
  1763. samsara/types/specific_vehicle_fault_code_object_response_body.py +34 -0
  1764. samsara/types/specific_vehicle_fault_code_object_response_body_type.py +7 -0
  1765. samsara/types/speed_data_response_body.py +57 -0
  1766. samsara/types/speed_data_response_body_operation.py +7 -0
  1767. samsara/types/speed_response_response_body.py +37 -0
  1768. samsara/types/speed_trigger_details_object_request_body.py +43 -0
  1769. samsara/types/speed_trigger_details_object_request_body_operation.py +5 -0
  1770. samsara/types/speed_trigger_details_object_response_body.py +43 -0
  1771. samsara/types/speed_trigger_details_object_response_body_operation.py +5 -0
  1772. samsara/types/speeding_interval_location_response_response_body.py +47 -0
  1773. samsara/types/speeding_interval_response_body.py +62 -0
  1774. samsara/types/speeding_interval_response_body_severity_level.py +7 -0
  1775. samsara/types/speeding_intervals_get_speeding_intervals_bad_gateway_error_response_body.py +33 -0
  1776. samsara/types/speeding_intervals_get_speeding_intervals_gateway_timeout_error_response_body.py +33 -0
  1777. samsara/types/speeding_intervals_get_speeding_intervals_internal_server_error_response_body.py +33 -0
  1778. samsara/types/speeding_intervals_get_speeding_intervals_method_not_allowed_error_response_body.py +33 -0
  1779. samsara/types/speeding_intervals_get_speeding_intervals_not_found_error_response_body.py +33 -0
  1780. samsara/types/speeding_intervals_get_speeding_intervals_not_implemented_error_response_body.py +33 -0
  1781. samsara/types/speeding_intervals_get_speeding_intervals_response_body.py +26 -0
  1782. samsara/types/speeding_intervals_get_speeding_intervals_service_unavailable_error_response_body.py +33 -0
  1783. samsara/types/speeding_intervals_get_speeding_intervals_too_many_requests_error_response_body.py +33 -0
  1784. samsara/types/speeding_intervals_get_speeding_intervals_unauthorized_error_response_body.py +33 -0
  1785. samsara/types/speeding_settings_object_response_body.py +37 -0
  1786. samsara/types/speeding_settings_object_response_body_unit.py +7 -0
  1787. samsara/types/speeding_severity_level_response_body.py +48 -0
  1788. samsara/types/speeding_severity_level_response_body_severity_level.py +7 -0
  1789. samsara/types/sudden_fuel_level_drop_response_body.py +26 -0
  1790. samsara/types/sudden_fuel_level_drop_trigger_details_object_request_body.py +30 -0
  1791. samsara/types/sudden_fuel_level_drop_trigger_details_object_response_body.py +30 -0
  1792. samsara/types/sudden_fuel_level_rise_response_body.py +26 -0
  1793. samsara/types/sudden_fuel_level_rise_trigger_details_object_request_body.py +30 -0
  1794. samsara/types/sudden_fuel_level_rise_trigger_details_object_response_body.py +30 -0
  1795. samsara/types/tachograph_activity.py +50 -0
  1796. samsara/types/tachograph_activity_list.py +7 -0
  1797. samsara/types/tachograph_activity_list_wrapper.py +22 -0
  1798. samsara/types/tachograph_activity_state.py +7 -0
  1799. samsara/types/tachograph_driver_file.py +47 -0
  1800. samsara/types/tachograph_driver_file_data.py +7 -0
  1801. samsara/types/tachograph_driver_file_list.py +7 -0
  1802. samsara/types/tachograph_driver_file_list_wrapper.py +22 -0
  1803. samsara/types/tachograph_driver_files_response.py +26 -0
  1804. samsara/types/tachograph_vehicle_file.py +47 -0
  1805. samsara/types/tachograph_vehicle_file_data.py +7 -0
  1806. samsara/types/tachograph_vehicle_file_list.py +7 -0
  1807. samsara/types/tachograph_vehicle_file_list_wrapper.py +22 -0
  1808. samsara/types/tachograph_vehicle_files_response.py +26 -0
  1809. samsara/types/tag.py +19 -0
  1810. samsara/types/tag_all_of.py +60 -0
  1811. samsara/types/tag_all_of_external_ids.py +21 -0
  1812. samsara/types/tag_id.py +3 -0
  1813. samsara/types/tag_name.py +3 -0
  1814. samsara/types/tag_response.py +24 -0
  1815. samsara/types/tag_tiny_response.py +40 -0
  1816. samsara/types/tagged_object.py +22 -0
  1817. samsara/types/tagged_object_id.py +3 -0
  1818. samsara/types/tagged_object_name.py +3 -0
  1819. samsara/types/tampering_detected_response_body.py +28 -0
  1820. samsara/types/time.py +3 -0
  1821. samsara/types/time_range_object_request_body.py +46 -0
  1822. samsara/types/time_range_object_request_body_days_of_week_item.py +7 -0
  1823. samsara/types/time_range_object_response_body.py +46 -0
  1824. samsara/types/time_range_object_response_body_days_of_week_item.py +7 -0
  1825. samsara/types/tiny_asset_object_request_body.py +36 -0
  1826. samsara/types/tiny_asset_object_request_body_asset_type.py +7 -0
  1827. samsara/types/tiny_asset_object_response_body.py +36 -0
  1828. samsara/types/tiny_asset_object_response_body_asset_type.py +7 -0
  1829. samsara/types/tiny_driver_object_request_body.py +28 -0
  1830. samsara/types/tiny_driver_object_response_body.py +28 -0
  1831. samsara/types/tiny_tag.py +26 -0
  1832. samsara/types/tiny_widget_object_request_body.py +28 -0
  1833. samsara/types/tiny_widget_object_response_body.py +28 -0
  1834. samsara/types/tire_fault_code_details_object_request_body.py +54 -0
  1835. samsara/types/tire_fault_code_details_object_request_body_manufacturer.py +17 -0
  1836. samsara/types/tire_fault_code_details_object_request_body_specific_tire_fault_codes_item.py +21 -0
  1837. samsara/types/tire_fault_code_details_object_response_body.py +56 -0
  1838. samsara/types/tire_fault_code_details_object_response_body_manufacturer.py +17 -0
  1839. samsara/types/tire_fault_code_details_object_response_body_specific_tire_fault_codes_item.py +21 -0
  1840. samsara/types/tire_faults_response_body.py +28 -0
  1841. samsara/types/trailer_assignments_create_driver_trailer_assignment_bad_gateway_error_response_body.py +33 -0
  1842. samsara/types/trailer_assignments_create_driver_trailer_assignment_gateway_timeout_error_response_body.py +33 -0
  1843. samsara/types/trailer_assignments_create_driver_trailer_assignment_internal_server_error_response_body.py +33 -0
  1844. samsara/types/trailer_assignments_create_driver_trailer_assignment_method_not_allowed_error_response_body.py +33 -0
  1845. samsara/types/trailer_assignments_create_driver_trailer_assignment_not_found_error_response_body.py +33 -0
  1846. samsara/types/trailer_assignments_create_driver_trailer_assignment_not_implemented_error_response_body.py +33 -0
  1847. samsara/types/trailer_assignments_create_driver_trailer_assignment_response_body.py +22 -0
  1848. samsara/types/trailer_assignments_create_driver_trailer_assignment_service_unavailable_error_response_body.py +33 -0
  1849. samsara/types/trailer_assignments_create_driver_trailer_assignment_too_many_requests_error_response_body.py +33 -0
  1850. samsara/types/trailer_assignments_create_driver_trailer_assignment_unauthorized_error_response_body.py +33 -0
  1851. samsara/types/trailer_assignments_get_driver_trailer_assignments_bad_gateway_error_response_body.py +33 -0
  1852. samsara/types/trailer_assignments_get_driver_trailer_assignments_gateway_timeout_error_response_body.py +33 -0
  1853. samsara/types/trailer_assignments_get_driver_trailer_assignments_internal_server_error_response_body.py +33 -0
  1854. samsara/types/trailer_assignments_get_driver_trailer_assignments_method_not_allowed_error_response_body.py +33 -0
  1855. samsara/types/trailer_assignments_get_driver_trailer_assignments_not_found_error_response_body.py +33 -0
  1856. samsara/types/trailer_assignments_get_driver_trailer_assignments_not_implemented_error_response_body.py +33 -0
  1857. samsara/types/trailer_assignments_get_driver_trailer_assignments_response_body.py +28 -0
  1858. samsara/types/trailer_assignments_get_driver_trailer_assignments_service_unavailable_error_response_body.py +33 -0
  1859. samsara/types/trailer_assignments_get_driver_trailer_assignments_too_many_requests_error_response_body.py +33 -0
  1860. samsara/types/trailer_assignments_get_driver_trailer_assignments_unauthorized_error_response_body.py +33 -0
  1861. samsara/types/trailer_assignments_update_driver_trailer_assignment_bad_gateway_error_response_body.py +33 -0
  1862. samsara/types/trailer_assignments_update_driver_trailer_assignment_gateway_timeout_error_response_body.py +33 -0
  1863. samsara/types/trailer_assignments_update_driver_trailer_assignment_internal_server_error_response_body.py +33 -0
  1864. samsara/types/trailer_assignments_update_driver_trailer_assignment_method_not_allowed_error_response_body.py +33 -0
  1865. samsara/types/trailer_assignments_update_driver_trailer_assignment_not_found_error_response_body.py +33 -0
  1866. samsara/types/trailer_assignments_update_driver_trailer_assignment_not_implemented_error_response_body.py +33 -0
  1867. samsara/types/trailer_assignments_update_driver_trailer_assignment_response_body.py +22 -0
  1868. samsara/types/trailer_assignments_update_driver_trailer_assignment_service_unavailable_error_response_body.py +33 -0
  1869. samsara/types/trailer_assignments_update_driver_trailer_assignment_too_many_requests_error_response_body.py +33 -0
  1870. samsara/types/trailer_assignments_update_driver_trailer_assignment_unauthorized_error_response_body.py +33 -0
  1871. samsara/types/trailer_dvir_object_response_body.py +35 -0
  1872. samsara/types/trailer_goa_gateway_tiny_response_response_body.py +32 -0
  1873. samsara/types/trailer_goa_gateway_tiny_response_response_body_model.py +52 -0
  1874. samsara/types/trailer_object_response_body.py +28 -0
  1875. samsara/types/trailer_response_object_response_body.py +72 -0
  1876. samsara/types/trailer_tiny_response.py +31 -0
  1877. samsara/types/trailer_with_attributes_response_object_response_body.py +78 -0
  1878. samsara/types/trailers_create_trailer_bad_gateway_error_response_body.py +33 -0
  1879. samsara/types/trailers_create_trailer_gateway_timeout_error_response_body.py +33 -0
  1880. samsara/types/trailers_create_trailer_internal_server_error_response_body.py +33 -0
  1881. samsara/types/trailers_create_trailer_method_not_allowed_error_response_body.py +33 -0
  1882. samsara/types/trailers_create_trailer_not_found_error_response_body.py +33 -0
  1883. samsara/types/trailers_create_trailer_not_implemented_error_response_body.py +33 -0
  1884. samsara/types/trailers_create_trailer_response_body.py +20 -0
  1885. samsara/types/trailers_create_trailer_service_unavailable_error_response_body.py +33 -0
  1886. samsara/types/trailers_create_trailer_too_many_requests_error_response_body.py +33 -0
  1887. samsara/types/trailers_create_trailer_unauthorized_error_response_body.py +33 -0
  1888. samsara/types/trailers_delete_trailer_bad_gateway_error_response_body.py +33 -0
  1889. samsara/types/trailers_delete_trailer_gateway_timeout_error_response_body.py +33 -0
  1890. samsara/types/trailers_delete_trailer_internal_server_error_response_body.py +33 -0
  1891. samsara/types/trailers_delete_trailer_method_not_allowed_error_response_body.py +33 -0
  1892. samsara/types/trailers_delete_trailer_not_found_error_response_body.py +33 -0
  1893. samsara/types/trailers_delete_trailer_not_implemented_error_response_body.py +33 -0
  1894. samsara/types/trailers_delete_trailer_service_unavailable_error_response_body.py +33 -0
  1895. samsara/types/trailers_delete_trailer_too_many_requests_error_response_body.py +33 -0
  1896. samsara/types/trailers_delete_trailer_unauthorized_error_response_body.py +33 -0
  1897. samsara/types/trailers_get_trailer_bad_gateway_error_response_body.py +33 -0
  1898. samsara/types/trailers_get_trailer_gateway_timeout_error_response_body.py +33 -0
  1899. samsara/types/trailers_get_trailer_internal_server_error_response_body.py +33 -0
  1900. samsara/types/trailers_get_trailer_method_not_allowed_error_response_body.py +33 -0
  1901. samsara/types/trailers_get_trailer_not_found_error_response_body.py +33 -0
  1902. samsara/types/trailers_get_trailer_not_implemented_error_response_body.py +33 -0
  1903. samsara/types/trailers_get_trailer_response_body.py +20 -0
  1904. samsara/types/trailers_get_trailer_service_unavailable_error_response_body.py +33 -0
  1905. samsara/types/trailers_get_trailer_too_many_requests_error_response_body.py +33 -0
  1906. samsara/types/trailers_get_trailer_unauthorized_error_response_body.py +33 -0
  1907. samsara/types/trailers_list_trailers_bad_gateway_error_response_body.py +33 -0
  1908. samsara/types/trailers_list_trailers_gateway_timeout_error_response_body.py +33 -0
  1909. samsara/types/trailers_list_trailers_internal_server_error_response_body.py +33 -0
  1910. samsara/types/trailers_list_trailers_method_not_allowed_error_response_body.py +33 -0
  1911. samsara/types/trailers_list_trailers_not_found_error_response_body.py +33 -0
  1912. samsara/types/trailers_list_trailers_not_implemented_error_response_body.py +33 -0
  1913. samsara/types/trailers_list_trailers_response_body.py +26 -0
  1914. samsara/types/trailers_list_trailers_service_unavailable_error_response_body.py +33 -0
  1915. samsara/types/trailers_list_trailers_too_many_requests_error_response_body.py +33 -0
  1916. samsara/types/trailers_list_trailers_unauthorized_error_response_body.py +33 -0
  1917. samsara/types/trailers_update_trailer_bad_gateway_error_response_body.py +33 -0
  1918. samsara/types/trailers_update_trailer_gateway_timeout_error_response_body.py +33 -0
  1919. samsara/types/trailers_update_trailer_internal_server_error_response_body.py +33 -0
  1920. samsara/types/trailers_update_trailer_method_not_allowed_error_response_body.py +33 -0
  1921. samsara/types/trailers_update_trailer_not_found_error_response_body.py +33 -0
  1922. samsara/types/trailers_update_trailer_not_implemented_error_response_body.py +33 -0
  1923. samsara/types/trailers_update_trailer_response_body.py +20 -0
  1924. samsara/types/trailers_update_trailer_service_unavailable_error_response_body.py +33 -0
  1925. samsara/types/trailers_update_trailer_too_many_requests_error_response_body.py +33 -0
  1926. samsara/types/trailers_update_trailer_unauthorized_error_response_body.py +33 -0
  1927. samsara/types/training_assignment_near_due_date_trigger_assignment_group_object_request_body.py +41 -0
  1928. samsara/types/training_assignment_near_due_date_trigger_assignment_group_object_request_body_assignment_group_type.py +7 -0
  1929. samsara/types/training_assignment_near_due_date_trigger_assignment_group_object_response_body.py +41 -0
  1930. samsara/types/training_assignment_near_due_date_trigger_assignment_group_object_response_body_assignment_group_type.py +7 -0
  1931. samsara/types/training_assignment_near_due_date_trigger_details_object_request_body.py +55 -0
  1932. samsara/types/training_assignment_near_due_date_trigger_details_object_request_body_condition_units.py +7 -0
  1933. samsara/types/training_assignment_near_due_date_trigger_details_object_response_body.py +55 -0
  1934. samsara/types/training_assignment_near_due_date_trigger_details_object_response_body_condition_units.py +7 -0
  1935. samsara/types/training_assignment_post_response_object_response_body.py +58 -0
  1936. samsara/types/training_assignment_response_object_response_body.py +113 -0
  1937. samsara/types/training_assignment_response_object_response_body_status.py +7 -0
  1938. samsara/types/training_assignments_delete_training_assignments_bad_gateway_error_response_body.py +33 -0
  1939. samsara/types/training_assignments_delete_training_assignments_gateway_timeout_error_response_body.py +33 -0
  1940. samsara/types/training_assignments_delete_training_assignments_internal_server_error_response_body.py +33 -0
  1941. samsara/types/training_assignments_delete_training_assignments_method_not_allowed_error_response_body.py +33 -0
  1942. samsara/types/training_assignments_delete_training_assignments_not_found_error_response_body.py +33 -0
  1943. samsara/types/training_assignments_delete_training_assignments_not_implemented_error_response_body.py +33 -0
  1944. samsara/types/training_assignments_delete_training_assignments_service_unavailable_error_response_body.py +33 -0
  1945. samsara/types/training_assignments_delete_training_assignments_too_many_requests_error_response_body.py +33 -0
  1946. samsara/types/training_assignments_delete_training_assignments_unauthorized_error_response_body.py +33 -0
  1947. samsara/types/training_assignments_get_training_assignments_stream_bad_gateway_error_response_body.py +33 -0
  1948. samsara/types/training_assignments_get_training_assignments_stream_gateway_timeout_error_response_body.py +33 -0
  1949. samsara/types/training_assignments_get_training_assignments_stream_internal_server_error_response_body.py +33 -0
  1950. samsara/types/training_assignments_get_training_assignments_stream_method_not_allowed_error_response_body.py +33 -0
  1951. samsara/types/training_assignments_get_training_assignments_stream_not_found_error_response_body.py +33 -0
  1952. samsara/types/training_assignments_get_training_assignments_stream_not_implemented_error_response_body.py +33 -0
  1953. samsara/types/training_assignments_get_training_assignments_stream_response_body.py +26 -0
  1954. samsara/types/training_assignments_get_training_assignments_stream_service_unavailable_error_response_body.py +33 -0
  1955. samsara/types/training_assignments_get_training_assignments_stream_too_many_requests_error_response_body.py +33 -0
  1956. samsara/types/training_assignments_get_training_assignments_stream_unauthorized_error_response_body.py +33 -0
  1957. samsara/types/training_assignments_patch_training_assignments_bad_gateway_error_response_body.py +33 -0
  1958. samsara/types/training_assignments_patch_training_assignments_gateway_timeout_error_response_body.py +33 -0
  1959. samsara/types/training_assignments_patch_training_assignments_internal_server_error_response_body.py +33 -0
  1960. samsara/types/training_assignments_patch_training_assignments_method_not_allowed_error_response_body.py +33 -0
  1961. samsara/types/training_assignments_patch_training_assignments_not_found_error_response_body.py +33 -0
  1962. samsara/types/training_assignments_patch_training_assignments_not_implemented_error_response_body.py +33 -0
  1963. samsara/types/training_assignments_patch_training_assignments_response_body.py +23 -0
  1964. samsara/types/training_assignments_patch_training_assignments_service_unavailable_error_response_body.py +33 -0
  1965. samsara/types/training_assignments_patch_training_assignments_too_many_requests_error_response_body.py +33 -0
  1966. samsara/types/training_assignments_patch_training_assignments_unauthorized_error_response_body.py +33 -0
  1967. samsara/types/training_assignments_post_training_assignments_bad_gateway_error_response_body.py +33 -0
  1968. samsara/types/training_assignments_post_training_assignments_gateway_timeout_error_response_body.py +33 -0
  1969. samsara/types/training_assignments_post_training_assignments_internal_server_error_response_body.py +33 -0
  1970. samsara/types/training_assignments_post_training_assignments_method_not_allowed_error_response_body.py +33 -0
  1971. samsara/types/training_assignments_post_training_assignments_not_found_error_response_body.py +33 -0
  1972. samsara/types/training_assignments_post_training_assignments_not_implemented_error_response_body.py +33 -0
  1973. samsara/types/training_assignments_post_training_assignments_response_body.py +23 -0
  1974. samsara/types/training_assignments_post_training_assignments_service_unavailable_error_response_body.py +33 -0
  1975. samsara/types/training_assignments_post_training_assignments_too_many_requests_error_response_body.py +33 -0
  1976. samsara/types/training_assignments_post_training_assignments_unauthorized_error_response_body.py +33 -0
  1977. samsara/types/training_category_object_response_body.py +31 -0
  1978. samsara/types/training_course_label_object_response_body.py +31 -0
  1979. samsara/types/training_course_object_response_body.py +33 -0
  1980. samsara/types/training_course_response_object_response_body.py +65 -0
  1981. samsara/types/training_course_response_object_response_body_status.py +7 -0
  1982. samsara/types/training_courses_get_training_courses_bad_gateway_error_response_body.py +33 -0
  1983. samsara/types/training_courses_get_training_courses_gateway_timeout_error_response_body.py +33 -0
  1984. samsara/types/training_courses_get_training_courses_internal_server_error_response_body.py +33 -0
  1985. samsara/types/training_courses_get_training_courses_method_not_allowed_error_response_body.py +33 -0
  1986. samsara/types/training_courses_get_training_courses_not_found_error_response_body.py +33 -0
  1987. samsara/types/training_courses_get_training_courses_not_implemented_error_response_body.py +33 -0
  1988. samsara/types/training_courses_get_training_courses_response_body.py +26 -0
  1989. samsara/types/training_courses_get_training_courses_service_unavailable_error_response_body.py +33 -0
  1990. samsara/types/training_courses_get_training_courses_too_many_requests_error_response_body.py +33 -0
  1991. samsara/types/training_courses_get_training_courses_unauthorized_error_response_body.py +33 -0
  1992. samsara/types/training_learner_object_response_body.py +31 -0
  1993. samsara/types/trigger_params_object_request_body.py +173 -0
  1994. samsara/types/trigger_params_object_response_body.py +175 -0
  1995. samsara/types/trip_asset_response_body.py +42 -0
  1996. samsara/types/trip_asset_response_body_type.py +7 -0
  1997. samsara/types/trip_response_body.py +60 -0
  1998. samsara/types/trip_response_body_completion_status.py +5 -0
  1999. samsara/types/trip_speeding_intervals_response_body.py +53 -0
  2000. samsara/types/trips_get_trips_bad_gateway_error_response_body.py +33 -0
  2001. samsara/types/trips_get_trips_gateway_timeout_error_response_body.py +33 -0
  2002. samsara/types/trips_get_trips_internal_server_error_response_body.py +33 -0
  2003. samsara/types/trips_get_trips_method_not_allowed_error_response_body.py +33 -0
  2004. samsara/types/trips_get_trips_not_found_error_response_body.py +33 -0
  2005. samsara/types/trips_get_trips_not_implemented_error_response_body.py +33 -0
  2006. samsara/types/trips_get_trips_response_body.py +26 -0
  2007. samsara/types/trips_get_trips_service_unavailable_error_response_body.py +33 -0
  2008. samsara/types/trips_get_trips_too_many_requests_error_response_body.py +33 -0
  2009. samsara/types/trips_get_trips_unauthorized_error_response_body.py +33 -0
  2010. samsara/types/unassigned_driving_data_response_body.py +26 -0
  2011. samsara/types/unassigned_driving_trigger_details_object_request_body.py +30 -0
  2012. samsara/types/unassigned_driving_trigger_details_object_response_body.py +30 -0
  2013. samsara/types/update_address_request_geofence.py +28 -0
  2014. samsara/types/update_driver_request_hos_setting.py +28 -0
  2015. samsara/types/update_routes_stop_request_object_request_body.py +82 -0
  2016. samsara/types/uploaded_media_object_response_body.py +65 -0
  2017. samsara/types/uploaded_media_object_response_body_input.py +7 -0
  2018. samsara/types/uploaded_media_object_response_body_media_type.py +5 -0
  2019. samsara/types/uploaded_media_object_response_body_trigger_reason.py +10 -0
  2020. samsara/types/url_info_object_response_body.py +33 -0
  2021. samsara/types/us_driver_ruleset_override.py +49 -0
  2022. samsara/types/us_driver_ruleset_override_cycle.py +38 -0
  2023. samsara/types/us_driver_ruleset_override_restart.py +7 -0
  2024. samsara/types/us_driver_ruleset_override_restbreak.py +7 -0
  2025. samsara/types/us_driver_ruleset_override_us_state_to_override.py +7 -0
  2026. samsara/types/user.py +34 -0
  2027. samsara/types/user_auth_type.py +5 -0
  2028. samsara/types/user_email.py +3 -0
  2029. samsara/types/user_expire_at.py +3 -0
  2030. samsara/types/user_id.py +3 -0
  2031. samsara/types/user_identifier_serial.py +3 -0
  2032. samsara/types/user_name.py +3 -0
  2033. samsara/types/user_response.py +24 -0
  2034. samsara/types/user_role.py +31 -0
  2035. samsara/types/user_role_assignment.py +30 -0
  2036. samsara/types/user_roles.py +7 -0
  2037. samsara/types/user_tiny_response.py +31 -0
  2038. samsara/types/vehicle.py +126 -0
  2039. samsara/types/vehicle_assignment_object_response_body.py +46 -0
  2040. samsara/types/vehicle_aux_input_name.py +3 -0
  2041. samsara/types/vehicle_aux_input_type.py +3 -0
  2042. samsara/types/vehicle_batter_voltage_details_object_request_body.py +43 -0
  2043. samsara/types/vehicle_batter_voltage_details_object_request_body_operation.py +5 -0
  2044. samsara/types/vehicle_batter_voltage_details_object_response_body.py +43 -0
  2045. samsara/types/vehicle_batter_voltage_details_object_response_body_operation.py +5 -0
  2046. samsara/types/vehicle_battery_voltage_response_body.py +28 -0
  2047. samsara/types/vehicle_def_level_percentage_response_body.py +28 -0
  2048. samsara/types/vehicle_detected_response_body.py +28 -0
  2049. samsara/types/vehicle_dvir_object_response_body.py +35 -0
  2050. samsara/types/vehicle_esn.py +3 -0
  2051. samsara/types/vehicle_external_ids.py +5 -0
  2052. samsara/types/vehicle_fault_code_details_object_request_body.py +74 -0
  2053. samsara/types/vehicle_fault_code_details_object_response_body.py +74 -0
  2054. samsara/types/vehicle_faults_response_body.py +28 -0
  2055. samsara/types/vehicle_harsh_acceleration_setting_type.py +7 -0
  2056. samsara/types/vehicle_id.py +3 -0
  2057. samsara/types/vehicle_license_plate.py +3 -0
  2058. samsara/types/vehicle_location.py +36 -0
  2059. samsara/types/vehicle_location_address.py +31 -0
  2060. samsara/types/vehicle_location_heading.py +3 -0
  2061. samsara/types/vehicle_location_is_ecu_speed.py +3 -0
  2062. samsara/types/vehicle_location_latitude.py +3 -0
  2063. samsara/types/vehicle_location_longitude.py +3 -0
  2064. samsara/types/vehicle_location_speed.py +3 -0
  2065. samsara/types/vehicle_locations_list_response.py +30 -0
  2066. samsara/types/vehicle_locations_list_response_data.py +32 -0
  2067. samsara/types/vehicle_locations_response.py +30 -0
  2068. samsara/types/vehicle_locations_response_data.py +28 -0
  2069. samsara/types/vehicle_make.py +3 -0
  2070. samsara/types/vehicle_model.py +3 -0
  2071. samsara/types/vehicle_name.py +3 -0
  2072. samsara/types/vehicle_notes.py +3 -0
  2073. samsara/types/vehicle_regulation_mode.py +5 -0
  2074. samsara/types/vehicle_response.py +24 -0
  2075. samsara/types/vehicle_response_object_response_body.py +259 -0
  2076. samsara/types/vehicle_response_object_response_body_vehicle_regulation_mode.py +7 -0
  2077. samsara/types/vehicle_response_object_response_body_vehicle_type.py +7 -0
  2078. samsara/types/vehicle_response_response_body.py +62 -0
  2079. samsara/types/vehicle_response_response_body_asset_type.py +7 -0
  2080. samsara/types/vehicle_sensor_configuration.py +26 -0
  2081. samsara/types/vehicle_sensor_configuration_area.py +51 -0
  2082. samsara/types/vehicle_sensor_configuration_area_position.py +7 -0
  2083. samsara/types/vehicle_sensor_configuration_area_response_body.py +40 -0
  2084. samsara/types/vehicle_sensor_configuration_area_response_body_position.py +5 -0
  2085. samsara/types/vehicle_sensor_configuration_door.py +30 -0
  2086. samsara/types/vehicle_sensor_configuration_door_position.py +5 -0
  2087. samsara/types/vehicle_sensor_configuration_door_response_body.py +30 -0
  2088. samsara/types/vehicle_sensor_configuration_door_response_body_position.py +5 -0
  2089. samsara/types/vehicle_sensor_configuration_response_body.py +33 -0
  2090. samsara/types/vehicle_stats_ambient_air_temp_milli_c.py +28 -0
  2091. samsara/types/vehicle_stats_ambient_air_temp_milli_c_value.py +3 -0
  2092. samsara/types/vehicle_stats_ambient_air_temp_milli_c_with_decoration.py +30 -0
  2093. samsara/types/vehicle_stats_aux_input.py +30 -0
  2094. samsara/types/vehicle_stats_aux_input_decoration.py +25 -0
  2095. samsara/types/vehicle_stats_aux_input_time.py +3 -0
  2096. samsara/types/vehicle_stats_aux_input_value.py +3 -0
  2097. samsara/types/vehicle_stats_aux_input_with_decoration.py +32 -0
  2098. samsara/types/vehicle_stats_barometric_pressure_pa.py +28 -0
  2099. samsara/types/vehicle_stats_barometric_pressure_pa_value.py +3 -0
  2100. samsara/types/vehicle_stats_barometric_pressure_pa_with_decoration.py +30 -0
  2101. samsara/types/vehicle_stats_battery_milli_volts_value.py +3 -0
  2102. samsara/types/vehicle_stats_battery_voltage.py +28 -0
  2103. samsara/types/vehicle_stats_battery_voltage_with_decoration.py +30 -0
  2104. samsara/types/vehicle_stats_decorations.py +266 -0
  2105. samsara/types/vehicle_stats_decorations_ambient_air_temperature_milli_c.py +20 -0
  2106. samsara/types/vehicle_stats_decorations_barometric_pressure_pa.py +20 -0
  2107. samsara/types/vehicle_stats_decorations_battery_milli_volts.py +20 -0
  2108. samsara/types/vehicle_stats_decorations_def_level_milli_percent.py +20 -0
  2109. samsara/types/vehicle_stats_decorations_ecu_speed_mph.py +20 -0
  2110. samsara/types/vehicle_stats_decorations_engine_coolant_temperature_milli_c.py +20 -0
  2111. samsara/types/vehicle_stats_decorations_engine_load_percent.py +20 -0
  2112. samsara/types/vehicle_stats_decorations_engine_oil_pressure_k_pa.py +20 -0
  2113. samsara/types/vehicle_stats_decorations_engine_rpm.py +20 -0
  2114. samsara/types/vehicle_stats_decorations_engine_states.py +23 -0
  2115. samsara/types/vehicle_stats_decorations_engine_states_value.py +5 -0
  2116. samsara/types/vehicle_stats_decorations_fuel_percents.py +20 -0
  2117. samsara/types/vehicle_stats_decorations_gps.py +40 -0
  2118. samsara/types/vehicle_stats_decorations_gps_distance_meters.py +20 -0
  2119. samsara/types/vehicle_stats_decorations_gps_odometer_meters.py +20 -0
  2120. samsara/types/vehicle_stats_decorations_intake_manifold_temperature_milli_c.py +20 -0
  2121. samsara/types/vehicle_stats_decorations_obd_engine_seconds.py +20 -0
  2122. samsara/types/vehicle_stats_decorations_obd_odometer_meters.py +20 -0
  2123. samsara/types/vehicle_stats_def_level_milli_percent.py +28 -0
  2124. samsara/types/vehicle_stats_def_level_milli_percent_value.py +3 -0
  2125. samsara/types/vehicle_stats_def_level_milli_percent_with_decoration.py +30 -0
  2126. samsara/types/vehicle_stats_ecu_speed_mph.py +28 -0
  2127. samsara/types/vehicle_stats_ecu_speed_mph_value.py +3 -0
  2128. samsara/types/vehicle_stats_ecu_speed_mph_with_decoration.py +30 -0
  2129. samsara/types/vehicle_stats_engine_coolant_temp_milli_c.py +28 -0
  2130. samsara/types/vehicle_stats_engine_coolant_temp_milli_c_value.py +3 -0
  2131. samsara/types/vehicle_stats_engine_coolant_temp_milli_c_with_decoration.py +30 -0
  2132. samsara/types/vehicle_stats_engine_immobilizer.py +35 -0
  2133. samsara/types/vehicle_stats_engine_immobilizer_state.py +5 -0
  2134. samsara/types/vehicle_stats_engine_immobilizer_with_decoration.py +37 -0
  2135. samsara/types/vehicle_stats_engine_immobilizer_with_decoration_state.py +7 -0
  2136. samsara/types/vehicle_stats_engine_load_percent.py +28 -0
  2137. samsara/types/vehicle_stats_engine_load_percent_value.py +3 -0
  2138. samsara/types/vehicle_stats_engine_load_percent_with_decoration.py +30 -0
  2139. samsara/types/vehicle_stats_engine_oil_pressure_k_pa.py +28 -0
  2140. samsara/types/vehicle_stats_engine_oil_pressure_k_pa_value.py +3 -0
  2141. samsara/types/vehicle_stats_engine_oil_pressure_k_pa_with_decoration.py +30 -0
  2142. samsara/types/vehicle_stats_engine_rpm.py +28 -0
  2143. samsara/types/vehicle_stats_engine_rpm_value.py +3 -0
  2144. samsara/types/vehicle_stats_engine_rpm_with_decoration.py +30 -0
  2145. samsara/types/vehicle_stats_engine_state.py +26 -0
  2146. samsara/types/vehicle_stats_engine_state_setting.py +5 -0
  2147. samsara/types/vehicle_stats_engine_state_with_decoration.py +28 -0
  2148. samsara/types/vehicle_stats_ev_average_battery_temperature_milli_celsius.py +28 -0
  2149. samsara/types/vehicle_stats_ev_battery_current_milli_amp.py +28 -0
  2150. samsara/types/vehicle_stats_ev_battery_state_of_health_milli_percent.py +28 -0
  2151. samsara/types/vehicle_stats_ev_battery_voltage_milli_volt.py +28 -0
  2152. samsara/types/vehicle_stats_ev_charging_current_milli_amp.py +28 -0
  2153. samsara/types/vehicle_stats_ev_charging_energy_micro_wh.py +28 -0
  2154. samsara/types/vehicle_stats_ev_charging_status.py +31 -0
  2155. samsara/types/vehicle_stats_ev_charging_voltage_milli_volt.py +28 -0
  2156. samsara/types/vehicle_stats_ev_consumed_energy_micro_wh.py +28 -0
  2157. samsara/types/vehicle_stats_ev_distance_driven_meters.py +28 -0
  2158. samsara/types/vehicle_stats_ev_regenerated_energy_micro_wh.py +28 -0
  2159. samsara/types/vehicle_stats_ev_state_of_charge_milli_percent.py +28 -0
  2160. samsara/types/vehicle_stats_fault_codes.py +38 -0
  2161. samsara/types/vehicle_stats_fault_codes_can_bus_type.py +3 -0
  2162. samsara/types/vehicle_stats_fault_codes_ignition_type.py +5 -0
  2163. samsara/types/vehicle_stats_fault_codes_j_1939.py +32 -0
  2164. samsara/types/vehicle_stats_fault_codes_j_1939_lights.py +43 -0
  2165. samsara/types/vehicle_stats_fault_codes_j_1939_trouble_code.py +71 -0
  2166. samsara/types/vehicle_stats_fault_codes_j_1939_trouble_codes.py +7 -0
  2167. samsara/types/vehicle_stats_fault_codes_obdii.py +39 -0
  2168. samsara/types/vehicle_stats_fault_codes_obdii_trouble_code.py +63 -0
  2169. samsara/types/vehicle_stats_fault_codes_oem.py +28 -0
  2170. samsara/types/vehicle_stats_fault_codes_oem_trouble_code.py +51 -0
  2171. samsara/types/vehicle_stats_fault_codes_oem_trouble_codes.py +7 -0
  2172. samsara/types/vehicle_stats_fault_codes_passenger_dtc.py +42 -0
  2173. samsara/types/vehicle_stats_fault_codes_passenger_monitor_status.py +55 -0
  2174. samsara/types/vehicle_stats_fault_codes_passenger_monitor_status_value.py +5 -0
  2175. samsara/types/vehicle_stats_fault_codes_tx_id.py +3 -0
  2176. samsara/types/vehicle_stats_fault_codes_value.py +39 -0
  2177. samsara/types/vehicle_stats_fault_codes_value_j_1939.py +40 -0
  2178. samsara/types/vehicle_stats_fault_codes_value_j_1939_check_engine_lights.py +43 -0
  2179. samsara/types/vehicle_stats_fault_codes_value_j_1939_diagnostic_trouble_codes.py +77 -0
  2180. samsara/types/vehicle_stats_fault_codes_value_j_1939_vendor_specific_fields.py +37 -0
  2181. samsara/types/vehicle_stats_fault_codes_value_obdii.py +41 -0
  2182. samsara/types/vehicle_stats_fault_codes_value_obdii_confirmed_dtcs.py +42 -0
  2183. samsara/types/vehicle_stats_fault_codes_value_obdii_diagnostic_trouble_codes.py +74 -0
  2184. samsara/types/vehicle_stats_fault_codes_value_obdii_diagnostic_trouble_codes_ignition_type.py +7 -0
  2185. samsara/types/vehicle_stats_fault_codes_value_obdii_monitor_status.py +164 -0
  2186. samsara/types/vehicle_stats_fault_codes_value_obdii_monitor_status_catalyst.py +5 -0
  2187. samsara/types/vehicle_stats_fault_codes_value_obdii_monitor_status_comprehensive.py +5 -0
  2188. samsara/types/vehicle_stats_fault_codes_value_obdii_monitor_status_egr.py +5 -0
  2189. samsara/types/vehicle_stats_fault_codes_value_obdii_monitor_status_evap_system.py +5 -0
  2190. samsara/types/vehicle_stats_fault_codes_value_obdii_monitor_status_fuel.py +5 -0
  2191. samsara/types/vehicle_stats_fault_codes_value_obdii_monitor_status_heated_catalyst.py +5 -0
  2192. samsara/types/vehicle_stats_fault_codes_value_obdii_monitor_status_heated_o_2_sensor.py +5 -0
  2193. samsara/types/vehicle_stats_fault_codes_value_obdii_monitor_status_iso_sae_reserved.py +5 -0
  2194. samsara/types/vehicle_stats_fault_codes_value_obdii_monitor_status_misfire.py +5 -0
  2195. samsara/types/vehicle_stats_fault_codes_value_obdii_monitor_status_o_2_sensor.py +5 -0
  2196. samsara/types/vehicle_stats_fault_codes_value_obdii_monitor_status_secondary_air.py +5 -0
  2197. samsara/types/vehicle_stats_fault_codes_value_oem.py +34 -0
  2198. samsara/types/vehicle_stats_fault_codes_value_oem_diagnostic_trouble_codes.py +51 -0
  2199. samsara/types/vehicle_stats_fault_codes_vendor_specific_fields.py +37 -0
  2200. samsara/types/vehicle_stats_fault_codes_with_decoration.py +40 -0
  2201. samsara/types/vehicle_stats_fuel_percent.py +28 -0
  2202. samsara/types/vehicle_stats_fuel_percent_value.py +3 -0
  2203. samsara/types/vehicle_stats_fuel_percent_with_decoration.py +30 -0
  2204. samsara/types/vehicle_stats_gps.py +46 -0
  2205. samsara/types/vehicle_stats_gps_distance_meters.py +28 -0
  2206. samsara/types/vehicle_stats_gps_distance_meters_value.py +3 -0
  2207. samsara/types/vehicle_stats_gps_distance_meters_with_decoration.py +30 -0
  2208. samsara/types/vehicle_stats_gps_odometer_meters.py +28 -0
  2209. samsara/types/vehicle_stats_gps_odometer_meters_value.py +3 -0
  2210. samsara/types/vehicle_stats_gps_odometer_meters_with_decoration.py +30 -0
  2211. samsara/types/vehicle_stats_intake_manifold_temp_milli_c.py +28 -0
  2212. samsara/types/vehicle_stats_intake_manifold_temp_milli_c_value.py +3 -0
  2213. samsara/types/vehicle_stats_intake_manifold_temp_milli_c_with_decoration.py +30 -0
  2214. samsara/types/vehicle_stats_list_gps.py +48 -0
  2215. samsara/types/vehicle_stats_list_response.py +30 -0
  2216. samsara/types/vehicle_stats_list_response_data.py +516 -0
  2217. samsara/types/vehicle_stats_list_synthetic_engine_seconds.py +28 -0
  2218. samsara/types/vehicle_stats_nfc_card_scan.py +26 -0
  2219. samsara/types/vehicle_stats_nfc_card_scan_card.py +26 -0
  2220. samsara/types/vehicle_stats_nfc_card_scan_with_decoration.py +28 -0
  2221. samsara/types/vehicle_stats_obd_engine_seconds.py +28 -0
  2222. samsara/types/vehicle_stats_obd_engine_seconds_value.py +3 -0
  2223. samsara/types/vehicle_stats_obd_engine_seconds_with_decoration.py +30 -0
  2224. samsara/types/vehicle_stats_obd_odometer_meters.py +28 -0
  2225. samsara/types/vehicle_stats_obd_odometer_meters_value.py +3 -0
  2226. samsara/types/vehicle_stats_obd_odometer_meters_with_decoration.py +30 -0
  2227. samsara/types/vehicle_stats_response.py +30 -0
  2228. samsara/types/vehicle_stats_response_data.py +263 -0
  2229. samsara/types/vehicle_stats_response_ev_average_battery_temperature_milli_celsius.py +31 -0
  2230. samsara/types/vehicle_stats_response_ev_battery_current_milli_amp.py +31 -0
  2231. samsara/types/vehicle_stats_response_ev_battery_state_of_health_milli_percent.py +31 -0
  2232. samsara/types/vehicle_stats_response_ev_battery_voltage_milli_volt.py +31 -0
  2233. samsara/types/vehicle_stats_response_ev_charging_current_milli_amp.py +31 -0
  2234. samsara/types/vehicle_stats_response_ev_charging_energy_micro_wh.py +31 -0
  2235. samsara/types/vehicle_stats_response_ev_charging_status.py +34 -0
  2236. samsara/types/vehicle_stats_response_ev_charging_voltage_milli_volt.py +31 -0
  2237. samsara/types/vehicle_stats_response_ev_consumed_energy_micro_wh.py +31 -0
  2238. samsara/types/vehicle_stats_response_ev_distance_driven_meters.py +31 -0
  2239. samsara/types/vehicle_stats_response_ev_regenerated_energy_micro_wh.py +31 -0
  2240. samsara/types/vehicle_stats_response_ev_state_of_charge_milli_percent.py +31 -0
  2241. samsara/types/vehicle_stats_response_seatbelt_driver.py +32 -0
  2242. samsara/types/vehicle_stats_response_seatbelt_driver_value.py +5 -0
  2243. samsara/types/vehicle_stats_response_spreader_active.py +32 -0
  2244. samsara/types/vehicle_stats_response_spreader_active_value.py +5 -0
  2245. samsara/types/vehicle_stats_response_spreader_air_temp.py +31 -0
  2246. samsara/types/vehicle_stats_response_spreader_blast_state.py +32 -0
  2247. samsara/types/vehicle_stats_response_spreader_blast_state_value.py +5 -0
  2248. samsara/types/vehicle_stats_response_spreader_granular_name.py +31 -0
  2249. samsara/types/vehicle_stats_response_spreader_granular_rate.py +31 -0
  2250. samsara/types/vehicle_stats_response_spreader_liquid_name.py +31 -0
  2251. samsara/types/vehicle_stats_response_spreader_liquid_rate.py +31 -0
  2252. samsara/types/vehicle_stats_response_spreader_on_state.py +32 -0
  2253. samsara/types/vehicle_stats_response_spreader_on_state_value.py +5 -0
  2254. samsara/types/vehicle_stats_response_spreader_plow_status.py +32 -0
  2255. samsara/types/vehicle_stats_response_spreader_plow_status_value.py +5 -0
  2256. samsara/types/vehicle_stats_response_spreader_prewet_name.py +31 -0
  2257. samsara/types/vehicle_stats_response_spreader_prewet_rate.py +31 -0
  2258. samsara/types/vehicle_stats_response_spreader_road_temp.py +31 -0
  2259. samsara/types/vehicle_stats_seatbelt_driver.py +29 -0
  2260. samsara/types/vehicle_stats_seatbelt_driver_value.py +5 -0
  2261. samsara/types/vehicle_stats_spreader_active.py +29 -0
  2262. samsara/types/vehicle_stats_spreader_active_value.py +5 -0
  2263. samsara/types/vehicle_stats_spreader_air_temp.py +28 -0
  2264. samsara/types/vehicle_stats_spreader_blast_state.py +29 -0
  2265. samsara/types/vehicle_stats_spreader_blast_state_value.py +5 -0
  2266. samsara/types/vehicle_stats_spreader_granular_name.py +28 -0
  2267. samsara/types/vehicle_stats_spreader_granular_rate.py +28 -0
  2268. samsara/types/vehicle_stats_spreader_liquid_name.py +28 -0
  2269. samsara/types/vehicle_stats_spreader_liquid_rate.py +28 -0
  2270. samsara/types/vehicle_stats_spreader_on_state.py +29 -0
  2271. samsara/types/vehicle_stats_spreader_on_state_value.py +5 -0
  2272. samsara/types/vehicle_stats_spreader_plow_status.py +29 -0
  2273. samsara/types/vehicle_stats_spreader_plow_status_value.py +5 -0
  2274. samsara/types/vehicle_stats_spreader_prewet_name.py +28 -0
  2275. samsara/types/vehicle_stats_spreader_prewet_rate.py +28 -0
  2276. samsara/types/vehicle_stats_spreader_road_temp.py +28 -0
  2277. samsara/types/vehicle_stats_synthetic_engine_seconds.py +28 -0
  2278. samsara/types/vehicle_stats_synthetic_engine_seconds_value.py +3 -0
  2279. samsara/types/vehicle_stats_tire_pressures.py +51 -0
  2280. samsara/types/vehicle_tags.py +7 -0
  2281. samsara/types/vehicle_tiny_response.py +40 -0
  2282. samsara/types/vehicle_type.py +3 -0
  2283. samsara/types/vehicle_vin.py +3 -0
  2284. samsara/types/vehicle_with_gateway_tiny_response_response_body.py +64 -0
  2285. samsara/types/vehicle_with_gateway_tiny_response_response_body_asset_type.py +7 -0
  2286. samsara/types/vehicle_year.py +3 -0
  2287. samsara/types/vehicles_driver_assignments_get_vehicles_driver_assignments_bad_gateway_error_response_body.py +33 -0
  2288. samsara/types/vehicles_driver_assignments_get_vehicles_driver_assignments_gateway_timeout_error_response_body.py +33 -0
  2289. samsara/types/vehicles_driver_assignments_get_vehicles_driver_assignments_internal_server_error_response_body.py +33 -0
  2290. samsara/types/vehicles_driver_assignments_get_vehicles_driver_assignments_method_not_allowed_error_response_body.py +33 -0
  2291. samsara/types/vehicles_driver_assignments_get_vehicles_driver_assignments_not_found_error_response_body.py +33 -0
  2292. samsara/types/vehicles_driver_assignments_get_vehicles_driver_assignments_not_implemented_error_response_body.py +33 -0
  2293. samsara/types/vehicles_driver_assignments_get_vehicles_driver_assignments_response_body.py +26 -0
  2294. samsara/types/vehicles_driver_assignments_get_vehicles_driver_assignments_service_unavailable_error_response_body.py +33 -0
  2295. samsara/types/vehicles_driver_assignments_get_vehicles_driver_assignments_too_many_requests_error_response_body.py +33 -0
  2296. samsara/types/vehicles_driver_assignments_get_vehicles_driver_assignments_unauthorized_error_response_body.py +33 -0
  2297. samsara/types/vehicles_driver_assignments_object_response_body.py +44 -0
  2298. samsara/types/vehicles_list_vehicles_bad_gateway_error_response_body.py +33 -0
  2299. samsara/types/vehicles_list_vehicles_gateway_timeout_error_response_body.py +33 -0
  2300. samsara/types/vehicles_list_vehicles_internal_server_error_response_body.py +33 -0
  2301. samsara/types/vehicles_list_vehicles_method_not_allowed_error_response_body.py +33 -0
  2302. samsara/types/vehicles_list_vehicles_not_found_error_response_body.py +33 -0
  2303. samsara/types/vehicles_list_vehicles_not_implemented_error_response_body.py +33 -0
  2304. samsara/types/vehicles_list_vehicles_response_body.py +26 -0
  2305. samsara/types/vehicles_list_vehicles_service_unavailable_error_response_body.py +33 -0
  2306. samsara/types/vehicles_list_vehicles_too_many_requests_error_response_body.py +33 -0
  2307. samsara/types/vehicles_list_vehicles_unauthorized_error_response_body.py +33 -0
  2308. samsara/types/vertex_request_body.py +31 -0
  2309. samsara/types/vertex_response_body.py +31 -0
  2310. samsara/types/voice_coaching_settings_object_response_body.py +54 -0
  2311. samsara/types/voice_coaching_settings_object_response_body_events_to_coach_item.py +7 -0
  2312. samsara/types/voice_coaching_settings_object_response_body_language.py +7 -0
  2313. samsara/types/walkaround_photo_object_response_body.py +38 -0
  2314. samsara/types/webhook_event.py +37 -0
  2315. samsara/types/webhook_params_object_request_body.py +36 -0
  2316. samsara/types/webhook_params_object_request_body_payload_type.py +5 -0
  2317. samsara/types/webhook_params_object_response_body.py +36 -0
  2318. samsara/types/webhook_params_object_response_body_payload_type.py +5 -0
  2319. samsara/types/webhook_response_response_body.py +65 -0
  2320. samsara/types/webhook_response_response_body_event_types_item.py +35 -0
  2321. samsara/types/webhook_response_response_body_version.py +5 -0
  2322. samsara/types/webhook_route_response_object_response_body.py +78 -0
  2323. samsara/types/webhooks_delete_webhook_bad_gateway_error_response_body.py +33 -0
  2324. samsara/types/webhooks_delete_webhook_gateway_timeout_error_response_body.py +33 -0
  2325. samsara/types/webhooks_delete_webhook_internal_server_error_response_body.py +33 -0
  2326. samsara/types/webhooks_delete_webhook_method_not_allowed_error_response_body.py +33 -0
  2327. samsara/types/webhooks_delete_webhook_not_found_error_response_body.py +33 -0
  2328. samsara/types/webhooks_delete_webhook_not_implemented_error_response_body.py +33 -0
  2329. samsara/types/webhooks_delete_webhook_service_unavailable_error_response_body.py +33 -0
  2330. samsara/types/webhooks_delete_webhook_too_many_requests_error_response_body.py +33 -0
  2331. samsara/types/webhooks_delete_webhook_unauthorized_error_response_body.py +33 -0
  2332. samsara/types/webhooks_get_webhook_bad_gateway_error_response_body.py +33 -0
  2333. samsara/types/webhooks_get_webhook_gateway_timeout_error_response_body.py +33 -0
  2334. samsara/types/webhooks_get_webhook_internal_server_error_response_body.py +33 -0
  2335. samsara/types/webhooks_get_webhook_method_not_allowed_error_response_body.py +33 -0
  2336. samsara/types/webhooks_get_webhook_not_found_error_response_body.py +33 -0
  2337. samsara/types/webhooks_get_webhook_not_implemented_error_response_body.py +33 -0
  2338. samsara/types/webhooks_get_webhook_response_body.py +61 -0
  2339. samsara/types/webhooks_get_webhook_response_body_event_types_item.py +35 -0
  2340. samsara/types/webhooks_get_webhook_response_body_version.py +5 -0
  2341. samsara/types/webhooks_get_webhook_service_unavailable_error_response_body.py +33 -0
  2342. samsara/types/webhooks_get_webhook_too_many_requests_error_response_body.py +33 -0
  2343. samsara/types/webhooks_get_webhook_unauthorized_error_response_body.py +33 -0
  2344. samsara/types/webhooks_list_webhooks_bad_gateway_error_response_body.py +33 -0
  2345. samsara/types/webhooks_list_webhooks_gateway_timeout_error_response_body.py +33 -0
  2346. samsara/types/webhooks_list_webhooks_internal_server_error_response_body.py +33 -0
  2347. samsara/types/webhooks_list_webhooks_method_not_allowed_error_response_body.py +33 -0
  2348. samsara/types/webhooks_list_webhooks_not_found_error_response_body.py +33 -0
  2349. samsara/types/webhooks_list_webhooks_not_implemented_error_response_body.py +33 -0
  2350. samsara/types/webhooks_list_webhooks_response_body.py +26 -0
  2351. samsara/types/webhooks_list_webhooks_service_unavailable_error_response_body.py +33 -0
  2352. samsara/types/webhooks_list_webhooks_too_many_requests_error_response_body.py +33 -0
  2353. samsara/types/webhooks_list_webhooks_unauthorized_error_response_body.py +33 -0
  2354. samsara/types/webhooks_patch_webhook_bad_gateway_error_response_body.py +33 -0
  2355. samsara/types/webhooks_patch_webhook_gateway_timeout_error_response_body.py +33 -0
  2356. samsara/types/webhooks_patch_webhook_internal_server_error_response_body.py +33 -0
  2357. samsara/types/webhooks_patch_webhook_method_not_allowed_error_response_body.py +33 -0
  2358. samsara/types/webhooks_patch_webhook_not_found_error_response_body.py +33 -0
  2359. samsara/types/webhooks_patch_webhook_not_implemented_error_response_body.py +33 -0
  2360. samsara/types/webhooks_patch_webhook_response_body.py +61 -0
  2361. samsara/types/webhooks_patch_webhook_response_body_event_types_item.py +35 -0
  2362. samsara/types/webhooks_patch_webhook_response_body_version.py +5 -0
  2363. samsara/types/webhooks_patch_webhook_service_unavailable_error_response_body.py +33 -0
  2364. samsara/types/webhooks_patch_webhook_too_many_requests_error_response_body.py +33 -0
  2365. samsara/types/webhooks_patch_webhook_unauthorized_error_response_body.py +33 -0
  2366. samsara/types/webhooks_post_webhooks_bad_gateway_error_response_body.py +33 -0
  2367. samsara/types/webhooks_post_webhooks_gateway_timeout_error_response_body.py +33 -0
  2368. samsara/types/webhooks_post_webhooks_internal_server_error_response_body.py +33 -0
  2369. samsara/types/webhooks_post_webhooks_method_not_allowed_error_response_body.py +33 -0
  2370. samsara/types/webhooks_post_webhooks_not_found_error_response_body.py +33 -0
  2371. samsara/types/webhooks_post_webhooks_not_implemented_error_response_body.py +33 -0
  2372. samsara/types/webhooks_post_webhooks_response_body.py +61 -0
  2373. samsara/types/webhooks_post_webhooks_response_body_event_types_item.py +35 -0
  2374. samsara/types/webhooks_post_webhooks_response_body_version.py +5 -0
  2375. samsara/types/webhooks_post_webhooks_service_unavailable_error_response_body.py +33 -0
  2376. samsara/types/webhooks_post_webhooks_too_many_requests_error_response_body.py +33 -0
  2377. samsara/types/webhooks_post_webhooks_unauthorized_error_response_body.py +33 -0
  2378. samsara/types/work_order_attachment_object_response_body.py +51 -0
  2379. samsara/types/work_order_attachment_object_response_body_processing_status.py +7 -0
  2380. samsara/types/work_order_discount_object_request_body.py +33 -0
  2381. samsara/types/work_order_discount_object_response_body.py +33 -0
  2382. samsara/types/work_order_item_object_request_body.py +32 -0
  2383. samsara/types/work_order_item_object_request_body_type.py +7 -0
  2384. samsara/types/work_order_item_object_response_body.py +32 -0
  2385. samsara/types/work_order_item_object_response_body_type.py +7 -0
  2386. samsara/types/work_order_money_object_request_body.py +31 -0
  2387. samsara/types/work_order_money_object_response_body.py +31 -0
  2388. samsara/types/work_order_object_response_body.py +147 -0
  2389. samsara/types/work_order_object_response_body_category.py +7 -0
  2390. samsara/types/work_order_object_response_body_priority.py +5 -0
  2391. samsara/types/work_order_object_response_body_status.py +18 -0
  2392. samsara/types/work_order_tax_object_request_body.py +33 -0
  2393. samsara/types/work_order_tax_object_response_body.py +33 -0
  2394. samsara/types/work_orders_delete_work_orders_bad_gateway_error_response_body.py +33 -0
  2395. samsara/types/work_orders_delete_work_orders_gateway_timeout_error_response_body.py +33 -0
  2396. samsara/types/work_orders_delete_work_orders_internal_server_error_response_body.py +33 -0
  2397. samsara/types/work_orders_delete_work_orders_method_not_allowed_error_response_body.py +33 -0
  2398. samsara/types/work_orders_delete_work_orders_not_found_error_response_body.py +33 -0
  2399. samsara/types/work_orders_delete_work_orders_not_implemented_error_response_body.py +33 -0
  2400. samsara/types/work_orders_delete_work_orders_service_unavailable_error_response_body.py +33 -0
  2401. samsara/types/work_orders_delete_work_orders_too_many_requests_error_response_body.py +33 -0
  2402. samsara/types/work_orders_delete_work_orders_unauthorized_error_response_body.py +33 -0
  2403. samsara/types/work_orders_get_service_tasks_bad_gateway_error_response_body.py +33 -0
  2404. samsara/types/work_orders_get_service_tasks_gateway_timeout_error_response_body.py +33 -0
  2405. samsara/types/work_orders_get_service_tasks_internal_server_error_response_body.py +33 -0
  2406. samsara/types/work_orders_get_service_tasks_method_not_allowed_error_response_body.py +33 -0
  2407. samsara/types/work_orders_get_service_tasks_not_found_error_response_body.py +33 -0
  2408. samsara/types/work_orders_get_service_tasks_not_implemented_error_response_body.py +33 -0
  2409. samsara/types/work_orders_get_service_tasks_response_body.py +26 -0
  2410. samsara/types/work_orders_get_service_tasks_service_unavailable_error_response_body.py +33 -0
  2411. samsara/types/work_orders_get_service_tasks_too_many_requests_error_response_body.py +33 -0
  2412. samsara/types/work_orders_get_service_tasks_unauthorized_error_response_body.py +33 -0
  2413. samsara/types/work_orders_get_work_orders_bad_gateway_error_response_body.py +33 -0
  2414. samsara/types/work_orders_get_work_orders_gateway_timeout_error_response_body.py +33 -0
  2415. samsara/types/work_orders_get_work_orders_internal_server_error_response_body.py +33 -0
  2416. samsara/types/work_orders_get_work_orders_method_not_allowed_error_response_body.py +33 -0
  2417. samsara/types/work_orders_get_work_orders_not_found_error_response_body.py +33 -0
  2418. samsara/types/work_orders_get_work_orders_not_implemented_error_response_body.py +33 -0
  2419. samsara/types/work_orders_get_work_orders_response_body.py +26 -0
  2420. samsara/types/work_orders_get_work_orders_service_unavailable_error_response_body.py +33 -0
  2421. samsara/types/work_orders_get_work_orders_too_many_requests_error_response_body.py +33 -0
  2422. samsara/types/work_orders_get_work_orders_unauthorized_error_response_body.py +33 -0
  2423. samsara/types/work_orders_patch_work_orders_bad_gateway_error_response_body.py +33 -0
  2424. samsara/types/work_orders_patch_work_orders_gateway_timeout_error_response_body.py +33 -0
  2425. samsara/types/work_orders_patch_work_orders_internal_server_error_response_body.py +33 -0
  2426. samsara/types/work_orders_patch_work_orders_method_not_allowed_error_response_body.py +33 -0
  2427. samsara/types/work_orders_patch_work_orders_not_found_error_response_body.py +33 -0
  2428. samsara/types/work_orders_patch_work_orders_not_implemented_error_response_body.py +33 -0
  2429. samsara/types/work_orders_patch_work_orders_response_body.py +20 -0
  2430. samsara/types/work_orders_patch_work_orders_service_unavailable_error_response_body.py +33 -0
  2431. samsara/types/work_orders_patch_work_orders_too_many_requests_error_response_body.py +33 -0
  2432. samsara/types/work_orders_patch_work_orders_unauthorized_error_response_body.py +33 -0
  2433. samsara/types/work_orders_post_work_orders_bad_gateway_error_response_body.py +33 -0
  2434. samsara/types/work_orders_post_work_orders_gateway_timeout_error_response_body.py +33 -0
  2435. samsara/types/work_orders_post_work_orders_internal_server_error_response_body.py +33 -0
  2436. samsara/types/work_orders_post_work_orders_method_not_allowed_error_response_body.py +33 -0
  2437. samsara/types/work_orders_post_work_orders_not_found_error_response_body.py +33 -0
  2438. samsara/types/work_orders_post_work_orders_not_implemented_error_response_body.py +33 -0
  2439. samsara/types/work_orders_post_work_orders_response_body.py +20 -0
  2440. samsara/types/work_orders_post_work_orders_service_unavailable_error_response_body.py +33 -0
  2441. samsara/types/work_orders_post_work_orders_too_many_requests_error_response_body.py +33 -0
  2442. samsara/types/work_orders_post_work_orders_unauthorized_error_response_body.py +33 -0
  2443. samsara/types/work_orders_stream_work_orders_bad_gateway_error_response_body.py +33 -0
  2444. samsara/types/work_orders_stream_work_orders_gateway_timeout_error_response_body.py +33 -0
  2445. samsara/types/work_orders_stream_work_orders_internal_server_error_response_body.py +33 -0
  2446. samsara/types/work_orders_stream_work_orders_method_not_allowed_error_response_body.py +33 -0
  2447. samsara/types/work_orders_stream_work_orders_not_found_error_response_body.py +33 -0
  2448. samsara/types/work_orders_stream_work_orders_not_implemented_error_response_body.py +33 -0
  2449. samsara/types/work_orders_stream_work_orders_response_body.py +26 -0
  2450. samsara/types/work_orders_stream_work_orders_service_unavailable_error_response_body.py +33 -0
  2451. samsara/types/work_orders_stream_work_orders_too_many_requests_error_response_body.py +33 -0
  2452. samsara/types/work_orders_stream_work_orders_unauthorized_error_response_body.py +33 -0
  2453. samsara/types/workflow_address_event_with_geofence_object_response_body.py +47 -0
  2454. samsara/types/workflow_author_signature_object_response_body.py +38 -0
  2455. samsara/types/workflow_author_signature_object_response_body_type.py +5 -0
  2456. samsara/types/workflow_circle_response_body.py +38 -0
  2457. samsara/types/workflow_dvir_object_response_body.py +96 -0
  2458. samsara/types/workflow_dvir_object_response_body_safety_status.py +5 -0
  2459. samsara/types/workflow_dvir_object_response_body_type.py +7 -0
  2460. samsara/types/workflow_dvir_submitted_response_object_response_body.py +28 -0
  2461. samsara/types/workflow_geofence_event_response_object_response_body.py +24 -0
  2462. samsara/types/workflow_geofence_response_body.py +28 -0
  2463. samsara/types/workflow_incident_condition_object_response_body.py +35 -0
  2464. samsara/types/workflow_incident_details_object_response_body.py +244 -0
  2465. samsara/types/workflow_polygon_response_body.py +27 -0
  2466. samsara/types/workflow_signatory_user_object_response_body.py +31 -0
  2467. samsara/types/workflow_trigger_object_request_body.py +75 -0
  2468. samsara/types/workflow_trigger_object_response_body.py +75 -0
  2469. samsara/user_roles/__init__.py +4 -0
  2470. samsara/user_roles/client.py +132 -0
  2471. samsara/user_roles/raw_client.py +129 -0
  2472. samsara/users/__init__.py +7 -0
  2473. samsara/users/client.py +571 -0
  2474. samsara/users/raw_client.py +610 -0
  2475. samsara/users/types/__init__.py +8 -0
  2476. samsara/users/types/create_user_request_auth_type.py +5 -0
  2477. samsara/users/types/update_user_request_auth_type.py +5 -0
  2478. samsara/vehicles/__init__.py +54 -0
  2479. samsara/vehicles/client.py +693 -0
  2480. samsara/vehicles/immobilizer/__init__.py +4 -0
  2481. samsara/vehicles/immobilizer/client.py +174 -0
  2482. samsara/vehicles/immobilizer/raw_client.py +364 -0
  2483. samsara/vehicles/locations/__init__.py +4 -0
  2484. samsara/vehicles/locations/client.py +473 -0
  2485. samsara/vehicles/locations/raw_client.py +472 -0
  2486. samsara/vehicles/raw_client.py +897 -0
  2487. samsara/vehicles/stats/__init__.py +19 -0
  2488. samsara/vehicles/stats/client.py +1048 -0
  2489. samsara/vehicles/stats/raw_client.py +1047 -0
  2490. samsara/vehicles/stats/types/__init__.py +17 -0
  2491. samsara/vehicles/stats/types/stats_feed_request_decorations_item.py +54 -0
  2492. samsara/vehicles/stats/types/stats_feed_request_types_item.py +68 -0
  2493. samsara/vehicles/stats/types/stats_history_request_decorations_item.py +54 -0
  2494. samsara/vehicles/stats/types/stats_history_request_types_item.py +68 -0
  2495. samsara/vehicles/stats/types/stats_list_request_types_item.py +68 -0
  2496. samsara/vehicles/tachograph_files/__init__.py +4 -0
  2497. samsara/vehicles/tachograph_files/client.py +190 -0
  2498. samsara/vehicles/tachograph_files/raw_client.py +173 -0
  2499. samsara/vehicles/types/__init__.py +35 -0
  2500. samsara/vehicles/types/update_vehicle_request_aux_input_type_1.py +30 -0
  2501. samsara/vehicles/types/update_vehicle_request_aux_input_type_10.py +30 -0
  2502. samsara/vehicles/types/update_vehicle_request_aux_input_type_11.py +30 -0
  2503. samsara/vehicles/types/update_vehicle_request_aux_input_type_12.py +30 -0
  2504. samsara/vehicles/types/update_vehicle_request_aux_input_type_13.py +30 -0
  2505. samsara/vehicles/types/update_vehicle_request_aux_input_type_2.py +30 -0
  2506. samsara/vehicles/types/update_vehicle_request_aux_input_type_3.py +30 -0
  2507. samsara/vehicles/types/update_vehicle_request_aux_input_type_4.py +30 -0
  2508. samsara/vehicles/types/update_vehicle_request_aux_input_type_5.py +30 -0
  2509. samsara/vehicles/types/update_vehicle_request_aux_input_type_6.py +30 -0
  2510. samsara/vehicles/types/update_vehicle_request_aux_input_type_7.py +30 -0
  2511. samsara/vehicles/types/update_vehicle_request_aux_input_type_8.py +30 -0
  2512. samsara/vehicles/types/update_vehicle_request_aux_input_type_9.py +30 -0
  2513. samsara/vehicles/types/update_vehicle_request_harsh_acceleration_setting_type.py +7 -0
  2514. samsara/version.py +3 -0
  2515. samsara/webhooks/__init__.py +15 -0
  2516. samsara/webhooks/client.py +602 -0
  2517. samsara/webhooks/raw_client.py +1644 -0
  2518. samsara/webhooks/types/__init__.py +13 -0
  2519. samsara/webhooks/types/webhooks_patch_webhook_request_body_version.py +7 -0
  2520. samsara/webhooks/types/webhooks_post_webhooks_request_body_event_types_item.py +35 -0
  2521. samsara/webhooks/types/webhooks_post_webhooks_request_body_version.py +7 -0
  2522. samsara_api-0.0.1.dist-info/LICENSE +21 -0
  2523. samsara_api-0.0.1.dist-info/METADATA +214 -0
  2524. samsara_api-0.0.1.dist-info/RECORD +2525 -0
  2525. samsara_api-0.0.1.dist-info/WHEEL +4 -0
@@ -0,0 +1,1048 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
6
+ from ...core.request_options import RequestOptions
7
+ from ...types.vehicle_stats_list_response import VehicleStatsListResponse
8
+ from ...types.vehicle_stats_response import VehicleStatsResponse
9
+ from .raw_client import AsyncRawStatsClient, RawStatsClient
10
+ from .types.stats_feed_request_decorations_item import StatsFeedRequestDecorationsItem
11
+ from .types.stats_feed_request_types_item import StatsFeedRequestTypesItem
12
+ from .types.stats_history_request_decorations_item import StatsHistoryRequestDecorationsItem
13
+ from .types.stats_history_request_types_item import StatsHistoryRequestTypesItem
14
+ from .types.stats_list_request_types_item import StatsListRequestTypesItem
15
+
16
+
17
+ class StatsClient:
18
+ def __init__(self, *, client_wrapper: SyncClientWrapper):
19
+ self._raw_client = RawStatsClient(client_wrapper=client_wrapper)
20
+
21
+ @property
22
+ def with_raw_response(self) -> RawStatsClient:
23
+ """
24
+ Retrieves a raw implementation of this client that returns raw responses.
25
+
26
+ Returns
27
+ -------
28
+ RawStatsClient
29
+ """
30
+ return self._raw_client
31
+
32
+ def list(
33
+ self,
34
+ *,
35
+ after: typing.Optional[str] = None,
36
+ time: typing.Optional[str] = None,
37
+ parent_tag_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
38
+ tag_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
39
+ vehicle_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
40
+ types: typing.Optional[
41
+ typing.Union[StatsListRequestTypesItem, typing.Sequence[StatsListRequestTypesItem]]
42
+ ] = None,
43
+ request_options: typing.Optional[RequestOptions] = None,
44
+ ) -> VehicleStatsResponse:
45
+ """
46
+ Returns the last known stats of all vehicles at the given `time`. If no `time` is specified, the current time is used.
47
+
48
+ Related guide: <a href="/docs/telematics" target="_blank">Telematics</a>.
49
+
50
+ **Submit Feedback**: Likes, dislikes, and API feature requests should be filed as feedback in our <a href="https://forms.gle/zkD4NCH7HjKb7mm69" target="_blank">API feedback form</a>. If you encountered an issue or noticed inaccuracies in the API documentation, please <a href="https://www.samsara.com/help" target="_blank">submit a case</a> to our support team.
51
+
52
+ To use this endpoint, select **Read Vehicle Statistics** under the Vehicles category when creating or editing an API token. <a href="https://developers.samsara.com/docs/authentication#scopes-for-api-tokens" target="_blank">Learn More.</a>
53
+
54
+ Parameters
55
+ ----------
56
+ after : typing.Optional[str]
57
+ If specified, this should be the endCursor value from the previous page of results. When present, this request will return the next page of results that occur immediately after the previous page of results.
58
+
59
+ time : typing.Optional[str]
60
+ A filter on the data that returns the last known data points with timestamps less than or equal to this value. Defaults to now if not provided. Must be a string in RFC 3339 format. Millisecond precision and timezones are supported. (Example: `2020-01-27T07:06:25Z`).
61
+
62
+ parent_tag_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
63
+ A filter on the data based on this comma-separated list of parent tag IDs, for use by orgs with tag hierarchies. Specifying a parent tag will implicitly include all descendent tags of the parent tag. Example: `parentTagIds=345,678`
64
+
65
+ tag_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
66
+ A filter on the data based on this comma-separated list of tag IDs. Example: `tagIds=1234,5678`
67
+
68
+ vehicle_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
69
+ A filter on the data based on this comma-separated list of vehicle IDs. Example: `vehicleIds=1234,5678`
70
+
71
+ types : typing.Optional[typing.Union[StatsListRequestTypesItem, typing.Sequence[StatsListRequestTypesItem]]]
72
+ The stat types you want this endpoint to return information on. See also the <a href="/docs/telematics#query-parameters" target="_blank">Telematics</a> guide for more details.
73
+
74
+ You may list ***up to 3*** types using comma-separated format. For example: `types=gps,engineStates,obdOdometerMeters`.
75
+
76
+ *Note:* `auxInput3`-`auxInput10` count as a single type against the limit of 3. For example, you could list `types=engineStates,obdOdometerMeters,auxInput3,auxInput4` because `auxInput3` and `auxInput4` count as a single stat type. `auxInput1` and `auxInput2` still count as their own individual types.
77
+
78
+ - `ambientAirTemperatureMilliC`: The ambient air temperature reading in millidegree Celsius.
79
+ - `auxInput1`-`auxInput13`: Stat events from the <a href="https://kb.samsara.com/hc/en-us/articles/360043040512-Auxiliary-Inputs" target="_blank">auxiliary inputs</a> for the vehicle.
80
+ - `barometricPressurePa`: The barometric pressure reading in pascals.
81
+ - `batteryMilliVolts`: The vehicle battery voltage reading.
82
+ - `defLevelMilliPercent`: The Diesel Exhaust Fluid (DEF) level in milli percentage points (e.g. `99001`, `49999`, etc).
83
+ - `ecuSpeedMph`: The speed of the engine in miles per hour according to the ECU.
84
+ - `engineCoolantTemperatureMilliC`: The engine coolant temperature reading in millidegree Celsius.
85
+ - `engineImmobilizer`: The state of the engine immobilizer - Valid values: `ignition_disabled`, `ignition_enabled`. This stat type will only return states of our first Engine Immobilizer Hardware (ACC-EI). Please use <a href="https://developers.samsara.com/reference/getengineimmobilizerstates" target="_blank">Get engine immobilizer states</a> to get states for both Engine Immobilizer Hardware versions (incl. HW-EI21).
86
+ - `engineLoadPercent`: The engine load in percentage points (e.g. `99`, `50`, etc).
87
+ - `engineOilPressureKPa`: The engine oil pressure reading in kilopascals.
88
+ - `engineRpm`: The revolutions per minute of the engine.
89
+ - `engineStates`: The state of the engine (`Off`, `On`, `Idle`).
90
+ - `faultCodes`: The diagnostic fault codes for the vehicle.
91
+ - `fuelPercents`: The engine fuel level in percentage points (e.g. `99`, `50`, etc).
92
+ - `gps`: GPS data including lat/long, heading, speed, address book entry (if exists), and a reverse geocoded address.
93
+ - `gpsDistanceMeters`: The distance the vehicle has traveled since the gateway was installed based on GPS calculations.
94
+ - `gpsOdometerMeters`: Odometer reading provided by GPS calculations when OBD odometer cannot be pulled automatically. You must provide a manual odometer reading before this value is updated. Manual odometer readings can be provided via the [PATCH /fleet/vehicles/{id}](ref:updatevehicle) endpoint or through the <a href="https://kb.samsara.com/hc/en-us/articles/115005273667-Editing-Odometer-Reading" target="_blank">cloud dasbhoard</a>. Odometer readings that are manually set will update as GPS trip data is gathered. Try combining with `obdOdometerMeters`.
95
+ - `intakeManifoldTemperatureMilliC`: The intake manifold temperature reading in millidegree Celsius.
96
+ - `nfcCardScans`: ID card scans.
97
+ - `obdEngineSeconds`: The cumulative number of seconds the engine has run according to onboard diagnostics.
98
+ - `obdOdometerMeters`: The odometer reading according to onboard diagnostics. If Samsara does not have diagnostic coverage for a particular vehicle, the value for this stat type will be omitted. Try combining with `gpsOdometerMeters`.
99
+ - `syntheticEngineSeconds`: Data for the synthetic engine seconds for the vehicle.
100
+ - `evStateOfChargeMilliPercent`: Milli percent State of Charge for electric and hybrid vehicles. Not all EV and HEVs may report this field.
101
+ - `evChargingStatus`: Charging status for electric and hybrid vehicles. Not all EV and HEVs may report this field. Statuses: unknown - 0, not charging - 1, charging - 2.
102
+ - `evChargingEnergyMicroWh`: Charging energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
103
+ - `evChargingVoltageMilliVolt`: Charging voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
104
+ - `evChargingCurrentMilliAmp`: Charging current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
105
+ - `evConsumedEnergyMicroWh`: Consumed energy (including regenerated) for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
106
+ - `evRegeneratedEnergyMicroWh`: Regenerated energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
107
+ - `evBatteryVoltageMilliVolt`: Battery voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
108
+ - `evBatteryCurrentMilliAmp`: Battery current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
109
+ - `evBatteryStateOfHealthMilliPercent`: Milli percent battery state of health for electric and hybrid vehicles. Not all EV and HEVs may report this field.
110
+ - `evAverageBatteryTemperatureMilliCelsius`: Battery temperature for electric and hybrid vehicles in milli celsius. Not all EV and HEVs may report this field.
111
+ - `evDistanceDrivenMeters`: Electric distance driven for electric and hybrid vehicles in meters. Not all EV and HEVs may report this field.
112
+ - `spreaderLiquidRate`: Liquid spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
113
+ - `spreaderGranularRate`: Granular spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
114
+ - `spreaderPrewetRate`: Prewet spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
115
+ - `spreaderAirTemp`: Air (ambient) temperature in milli celsius reading from material spreader.
116
+ - `spreaderRoadTemp`: Road temperature reading in milli celsius from material spreader.
117
+ - `spreaderOnState`: Whether vehicle spreader is enabled.
118
+ - `spreaderActive`: Whether vehicle is actively spreading any material.
119
+ - `spreaderBlastState`: Whether vehicle is actively spreading material in ‘blast mode’.
120
+ - `spreaderGranularName`: Name of most recent type of granular material spread, read from the material spreader.
121
+ - `spreaderPrewetName`: Name of most recent type of prewet material spread, read from the material spreader.
122
+ - `spreaderLiquidName`: Name of most recent type of liquid material spread, read from the material spreader.
123
+ - `spreaderPlowStatus`: Snow plow status (`Up` or `Down`), as read from the material spreader. Note: this is separate from plow status defined via auxInput.
124
+ - `seatbeltDriver`: Seatbelt Driver Status as read from the vehicle. `Buckled` or `Unbuckled`. (Beta only)
125
+
126
+ request_options : typing.Optional[RequestOptions]
127
+ Request-specific configuration.
128
+
129
+ Returns
130
+ -------
131
+ VehicleStatsResponse
132
+ Vehicle stats snapshot
133
+
134
+ Examples
135
+ --------
136
+ from samsara import Samsara
137
+
138
+ client = Samsara(
139
+ token="YOUR_TOKEN",
140
+ )
141
+ client.vehicles.stats.list()
142
+ """
143
+ _response = self._raw_client.list(
144
+ after=after,
145
+ time=time,
146
+ parent_tag_ids=parent_tag_ids,
147
+ tag_ids=tag_ids,
148
+ vehicle_ids=vehicle_ids,
149
+ types=types,
150
+ request_options=request_options,
151
+ )
152
+ return _response.data
153
+
154
+ def feed(
155
+ self,
156
+ *,
157
+ after: typing.Optional[str] = None,
158
+ parent_tag_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
159
+ tag_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
160
+ vehicle_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
161
+ types: typing.Optional[
162
+ typing.Union[StatsFeedRequestTypesItem, typing.Sequence[StatsFeedRequestTypesItem]]
163
+ ] = None,
164
+ decorations: typing.Optional[
165
+ typing.Union[StatsFeedRequestDecorationsItem, typing.Sequence[StatsFeedRequestDecorationsItem]]
166
+ ] = None,
167
+ request_options: typing.Optional[RequestOptions] = None,
168
+ ) -> VehicleStatsListResponse:
169
+ """
170
+ Follow a feed of vehicle stats.
171
+
172
+ Your first call to this endpoint will provide you with the most recent stats for each vehicle and an `endCursor`.
173
+
174
+ You can the provide the `endCursor` value to the `after` query parameter to get all updates since the last call you made.
175
+
176
+ If `hasNextPage` is `false`, no new data is immediately available. You should wait a minimum of 5 seconds making a subsequent request.
177
+
178
+ Related guide: <a href="/docs/telematics" target="_blank">Telematics</a>.
179
+
180
+ **Submit Feedback**: Likes, dislikes, and API feature requests should be filed as feedback in our <a href="https://forms.gle/zkD4NCH7HjKb7mm69" target="_blank">API feedback form</a>. If you encountered an issue or noticed inaccuracies in the API documentation, please <a href="https://www.samsara.com/help" target="_blank">submit a case</a> to our support team.
181
+
182
+ To use this endpoint, select **Read Vehicle Statistics** under the Vehicles category when creating or editing an API token. <a href="https://developers.samsara.com/docs/authentication#scopes-for-api-tokens" target="_blank">Learn More.</a>
183
+
184
+ Parameters
185
+ ----------
186
+ after : typing.Optional[str]
187
+ If specified, this should be the endCursor value from the previous page of results. When present, this request will return the next page of results that occur immediately after the previous page of results.
188
+
189
+ parent_tag_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
190
+ A filter on the data based on this comma-separated list of parent tag IDs, for use by orgs with tag hierarchies. Specifying a parent tag will implicitly include all descendent tags of the parent tag. Example: `parentTagIds=345,678`
191
+
192
+ tag_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
193
+ A filter on the data based on this comma-separated list of tag IDs. Example: `tagIds=1234,5678`
194
+
195
+ vehicle_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
196
+ A filter on the data based on this comma-separated list of vehicle IDs. Example: `vehicleIds=1234,5678`
197
+
198
+ types : typing.Optional[typing.Union[StatsFeedRequestTypesItem, typing.Sequence[StatsFeedRequestTypesItem]]]
199
+ The stat types you want this endpoint to return information on. See also the <a href="/docs/telematics#query-parameters" target="_blank">Telematics</a> guide for more details.
200
+
201
+ You may list ***up to 3*** types using comma-separated format. For example: `types=gps,engineStates,obdOdometerMeters`.
202
+
203
+ *Note:* `auxInput3`-`auxInput10` count as a single type against the limit of 3. For example, you could list `types=engineStates,obdOdometerMeters,auxInput3,auxInput4` because `auxInput3` and `auxInput4` count as a single stat type. `auxInput1` and `auxInput2` still count as their own individual types.
204
+
205
+ - `ambientAirTemperatureMilliC`: The ambient air temperature reading in millidegree Celsius.
206
+ - `auxInput1`-`auxInput13`: Stat events from the <a href="https://kb.samsara.com/hc/en-us/articles/360043040512-Auxiliary-Inputs" target="_blank">auxiliary inputs</a> for the vehicle.
207
+ - `barometricPressurePa`: The barometric pressure reading in pascals.
208
+ - `batteryMilliVolts`: The vehicle battery voltage reading.
209
+ - `defLevelMilliPercent`: The Diesel Exhaust Fluid (DEF) level in milli percentage points (e.g. `99001`, `49999`, etc).
210
+ - `ecuSpeedMph`: The speed of the engine in miles per hour according to the ECU.
211
+ - `engineCoolantTemperatureMilliC`: The engine coolant temperature reading in millidegree Celsius.
212
+ - `engineImmobilizer`: The state of the engine immobilizer - Valid values: `ignition_disabled`, `ignition_enabled`. This stat type will only return states of our first Engine Immobilizer Hardware (ACC-EI). Please use <a href="https://developers.samsara.com/reference/getengineimmobilizerstates" target="_blank">Get engine immobilizer states</a> to get states for both Engine Immobilizer Hardware versions (incl. HW-EI21).
213
+ - `engineLoadPercent`: The engine load in percentage points (e.g. `99`, `50`, etc).
214
+ - `engineOilPressureKPa`: The engine oil pressure reading in kilopascals.
215
+ - `engineRpm`: The revolutions per minute of the engine.
216
+ - `engineStates`: The state of the engine (`Off`, `On`, `Idle`).
217
+ - `faultCodes`: The diagnostic fault codes for the vehicle.
218
+ - `fuelPercents`: The engine fuel level in percentage points (e.g. `99`, `50`, etc).
219
+ - `gps`: GPS data including lat/long, heading, speed, address book entry (if exists), and a reverse geocoded address.
220
+ - `gpsDistanceMeters`: The distance the vehicle has traveled since the gateway was installed based on GPS calculations.
221
+ - `gpsOdometerMeters`: Odometer reading provided by GPS calculations when OBD odometer cannot be pulled automatically. You must provide a manual odometer reading before this value is updated. Manual odometer readings can be provided via the [PATCH /fleet/vehicles/{id}](ref:updatevehicle) endpoint or through the <a href="https://kb.samsara.com/hc/en-us/articles/115005273667-Editing-Odometer-Reading" target="_blank">cloud dasbhoard</a>. Odometer readings that are manually set will update as GPS trip data is gathered. Try combining with `obdOdometerMeters`.
222
+ - `intakeManifoldTemperatureMilliC`: The intake manifold temperature reading in millidegree Celsius.
223
+ - `nfcCardScans`: ID card scans.
224
+ - `obdEngineSeconds`: The cumulative number of seconds the engine has run according to onboard diagnostics.
225
+ - `obdOdometerMeters`: The odometer reading according to onboard diagnostics. If Samsara does not have diagnostic coverage for a particular vehicle, the value for this stat type will be omitted. Try combining with `gpsOdometerMeters`.
226
+ - `syntheticEngineSeconds`: Data for the synthetic engine seconds for the vehicle.
227
+ - `evStateOfChargeMilliPercent`: Milli percent State of Charge for electric and hybrid vehicles. Not all EV and HEVs may report this field.
228
+ - `evChargingStatus`: Charging status for electric and hybrid vehicles. Not all EV and HEVs may report this field. Statuses: unknown - 0, not charging - 1, charging - 2.
229
+ - `evChargingEnergyMicroWh`: Charging energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
230
+ - `evChargingVoltageMilliVolt`: Charging voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
231
+ - `evChargingCurrentMilliAmp`: Charging current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
232
+ - `evConsumedEnergyMicroWh`: Consumed energy (including regenerated) for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
233
+ - `evRegeneratedEnergyMicroWh`: Regenerated energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
234
+ - `evBatteryVoltageMilliVolt`: Battery voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
235
+ - `evBatteryCurrentMilliAmp`: Battery current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
236
+ - `evBatteryStateOfHealthMilliPercent`: Milli percent battery state of health for electric and hybrid vehicles. Not all EV and HEVs may report this field.
237
+ - `evAverageBatteryTemperatureMilliCelsius`: Battery temperature for electric and hybrid vehicles in milli celsius. Not all EV and HEVs may report this field.
238
+ - `evDistanceDrivenMeters`: Electric distance driven for electric and hybrid vehicles in meters. Not all EV and HEVs may report this field.
239
+ - `spreaderLiquidRate`: Liquid spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
240
+ - `spreaderGranularRate`: Granular spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
241
+ - `spreaderPrewetRate`: Prewet spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
242
+ - `spreaderAirTemp`: Air (ambient) temperature in milli celsius reading from material spreader.
243
+ - `spreaderRoadTemp`: Road temperature reading in milli celsius from material spreader.
244
+ - `spreaderOnState`: Whether vehicle spreader is enabled.
245
+ - `spreaderActive`: Whether vehicle is actively spreading any material.
246
+ - `spreaderBlastState`: Whether vehicle is actively spreading material in ‘blast mode’.
247
+ - `spreaderGranularName`: Name of most recent type of granular material spread, read from the material spreader.
248
+ - `spreaderPrewetName`: Name of most recent type of prewet material spread, read from the material spreader.
249
+ - `spreaderLiquidName`: Name of most recent type of liquid material spread, read from the material spreader.
250
+ - `spreaderPlowStatus`: Snow plow status (`Up` or `Down`), as read from the material spreader. Note: this is separate from plow status defined via auxInput.
251
+ - `seatbeltDriver`: Seatbelt Driver Status as read from the vehicle. `Buckled` or `Unbuckled`. (Beta only)
252
+
253
+ decorations : typing.Optional[typing.Union[StatsFeedRequestDecorationsItem, typing.Sequence[StatsFeedRequestDecorationsItem]]]
254
+ Decorations to add to the primary stats listed in the `types` parameter. For example, if you wish to know the vehicle's location whenever the engine changes state, you may set `types=engineStates&decorations=gps`.
255
+
256
+ You may list ***up to 2*** decorations using comma-separated format. If multiple stats are listed in the `types` parameter, the decorations will be added to each one. For example: `types=engineStates,obdOdometerMeters,faultCodes&decorations=gps,fuelPercents` will list GPS and fuel decorations for each engine state change, each odometer reading, and each fault code. See the <a href="/docs/telematics#query-parameters" target="_blank">Telematics</a> guide for more details.
257
+
258
+ Note that decorations may significantly increase the response payload size.
259
+
260
+ - `ambientAirTemperatureMilliC`: The ambient air temperature reading in millidegree Celsius.
261
+ - `auxInput1`-`auxInput13`: Stat events from the <a href="https://kb.samsara.com/hc/en-us/articles/360043040512-Auxiliary-Inputs" target="_blank">auxiliary inputs</a> for the vehicle.
262
+ - `batteryMilliVolts`: The vehicle battery voltage reading.
263
+ - `barometricPressurePa`: The barometric pressure reading in pascals.
264
+ - `ecuSpeedMph`: The speed of the engine in miles per hour according to the ECU.
265
+ - `engineCoolantTemperatureMilliC`: The engine coolant temperature reading in millidegree Celsius.
266
+ - `engineImmobilizer`: The state of the engine immobilizer - Valid values: `ignition_disabled`, `ignition_enabled`. This stat type will only return states of our first Engine Immobilizer Hardware (ACC-EI). Please use <a href="https://developers.samsara.com/reference/getengineimmobilizerstates" target="_blank">Get engine immobilizer states</a> to get states for both Engine Immobilizer Hardware versions (incl. HW-EI21).
267
+ - `engineOilPressureKPa`: The engine oil pressure reading in kilopascals.
268
+ - `engineLoadPercent`: The engine load in percentage points (e.g. `99`, `50`, etc).
269
+ - `engineRpm`: The revolutions per minute of the engine.
270
+ - `engineStates`: The state of the engine (`Off`, `On`, `Idle`).
271
+ - `faultCodes`: The diagnostic fault codes for the vehicle.
272
+ - `fuelPercents`: The engine fuel level in percentage points (e.g. `99`, `50`, etc).
273
+ - `gps`: GPS data including lat/long, heading, speed, address book entry (if exists), and a reverse geocoded address.
274
+ - `gpsDistanceMeters`: The distance the vehicle has traveled since the gateway was installed based on GPS calculations.
275
+ - `intakeManifoldTemperatureMilliC`: The intake manifold temperature reading in millidegree Celsius.
276
+ - `nfcCardScans`: ID card scans.
277
+ - `obdEngineSeconds`: The cumulative number of seconds the engine has run according to onboard diagnostics.
278
+ - `obdOdometerMeters`: The odometer reading according to onboard diagnostics. If Samsara does not have diagnostic coverage for a particular vehicle, the value for this stat type will be omitted.
279
+ - `syntheticEngineSeconds`: Data for the synthetic engine seconds for the vehicle.
280
+ - `evStateOfChargeMilliPercent`: Milli percent State of Charge for electric and hybrid vehicles. Not all EV and HEVs may report this field.
281
+ - `evChargingStatus`: Charging status for electric and hybrid vehicles. Not all EV and HEVs may report this field. Statuses: unknown - 0, not charging - 1, charging - 2.
282
+ - `evChargingEnergyMicroWh`: Charging energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
283
+ - `evChargingVoltageMilliVolt`: Charging voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
284
+ - `evChargingCurrentMilliAmp`: Charging current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
285
+ - `evConsumedEnergyMicroWh`: Consumed energy (including regenerated) for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
286
+ - `evRegeneratedEnergyMicroWh`: Regenerated energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
287
+ - `evBatteryVoltageMilliVolt`: Battery voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
288
+ - `evBatteryCurrentMilliAmp`: Battery current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
289
+ - `evBatteryStateOfHealthMilliPercent`: Milli percent battery state of health for electric and hybrid vehicles. Not all EV and HEVs may report this field.
290
+ - `evAverageBatteryTemperatureMilliCelsius`: Battery temperature for electric and hybrid vehicles in milli celsius. Not all EV and HEVs may report this field.
291
+ - `evDistanceDrivenMeters`: Electric distance driven for electric and hybrid vehicles in meters. Not all EV and HEVs may report this field.
292
+ - `spreaderLiquidRate`: Liquid spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
293
+ - `spreaderGranularRate`: Granular spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
294
+ - `spreaderPrewetRate`: Prewet spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
295
+ - `spreaderAirTemp`: Air (ambient) temperature in milli celsius reading from material spreader.
296
+ - `spreaderRoadTemp`: Road temperature reading in milli celsius from material spreader.
297
+ - `spreaderOnState`: Whether vehicle spreader is enabled.
298
+ - `spreaderActive`: Whether vehicle is actively spreading any material.
299
+ - `spreaderBlastState`: Whether vehicle is actively spreading material in ‘blast mode’.
300
+ - `spreaderGranularName`: Name of most recent type of granular material spread, read from the material spreader.
301
+ - `spreaderPrewetName`: Name of most recent type of prewet material spread, read from the material spreader.
302
+ - `spreaderLiquidName`: Name of most recent type of liquid material spread, read from the material spreader.
303
+ - `spreaderPlowStatus`: Snow plow status (`Up` or `Down`), as read from the material spreader. Note: this is separate from plow status defined via auxInput.
304
+ - `seatbeltDriver`: Seatbelt Driver Status as read from the vehicle. `Buckled` or `Unbuckled`. (Beta only)
305
+
306
+ request_options : typing.Optional[RequestOptions]
307
+ Request-specific configuration.
308
+
309
+ Returns
310
+ -------
311
+ VehicleStatsListResponse
312
+ List of stat events for the specified vehicles and stat types.
313
+
314
+ Examples
315
+ --------
316
+ from samsara import Samsara
317
+
318
+ client = Samsara(
319
+ token="YOUR_TOKEN",
320
+ )
321
+ client.vehicles.stats.feed()
322
+ """
323
+ _response = self._raw_client.feed(
324
+ after=after,
325
+ parent_tag_ids=parent_tag_ids,
326
+ tag_ids=tag_ids,
327
+ vehicle_ids=vehicle_ids,
328
+ types=types,
329
+ decorations=decorations,
330
+ request_options=request_options,
331
+ )
332
+ return _response.data
333
+
334
+ def history(
335
+ self,
336
+ *,
337
+ start_time: str,
338
+ end_time: str,
339
+ after: typing.Optional[str] = None,
340
+ parent_tag_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
341
+ tag_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
342
+ vehicle_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
343
+ types: typing.Optional[
344
+ typing.Union[StatsHistoryRequestTypesItem, typing.Sequence[StatsHistoryRequestTypesItem]]
345
+ ] = None,
346
+ decorations: typing.Optional[
347
+ typing.Union[StatsHistoryRequestDecorationsItem, typing.Sequence[StatsHistoryRequestDecorationsItem]]
348
+ ] = None,
349
+ request_options: typing.Optional[RequestOptions] = None,
350
+ ) -> VehicleStatsListResponse:
351
+ """
352
+ Returns vehicle stats during the given time range for all vehicles. This can be optionally filtered by tags or specific vehicle IDs.
353
+
354
+ Related guide: <a href="/docs/telematics" target="_blank">Telematics</a>.
355
+
356
+ **Submit Feedback**: Likes, dislikes, and API feature requests should be filed as feedback in our <a href="https://forms.gle/zkD4NCH7HjKb7mm69" target="_blank">API feedback form</a>. If you encountered an issue or noticed inaccuracies in the API documentation, please <a href="https://www.samsara.com/help" target="_blank">submit a case</a> to our support team.
357
+
358
+ To use this endpoint, select **Read Vehicle Statistics** under the Vehicles category when creating or editing an API token. <a href="https://developers.samsara.com/docs/authentication#scopes-for-api-tokens" target="_blank">Learn More.</a>
359
+
360
+ Parameters
361
+ ----------
362
+ start_time : str
363
+ A start time in RFC 3339 format. Millisecond precision and timezones are supported. (Examples: 2019-06-13T19:08:25Z, 2019-06-13T19:08:25.455Z, OR 2015-09-15T14:00:12-04:00).
364
+
365
+ end_time : str
366
+ An end time in RFC 3339 format. Millisecond precision and timezones are supported. (Examples: 2019-06-13T19:08:25Z, 2019-06-13T19:08:25.455Z, OR 2015-09-15T14:00:12-04:00).
367
+
368
+ after : typing.Optional[str]
369
+ If specified, this should be the endCursor value from the previous page of results. When present, this request will return the next page of results that occur immediately after the previous page of results.
370
+
371
+ parent_tag_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
372
+ A filter on the data based on this comma-separated list of parent tag IDs, for use by orgs with tag hierarchies. Specifying a parent tag will implicitly include all descendent tags of the parent tag. Example: `parentTagIds=345,678`
373
+
374
+ tag_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
375
+ A filter on the data based on this comma-separated list of tag IDs. Example: `tagIds=1234,5678`
376
+
377
+ vehicle_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
378
+ A filter on the data based on this comma-separated list of vehicle IDs. Example: `vehicleIds=1234,5678`
379
+
380
+ types : typing.Optional[typing.Union[StatsHistoryRequestTypesItem, typing.Sequence[StatsHistoryRequestTypesItem]]]
381
+ The stat types you want this endpoint to return information on. See also the <a href="/docs/telematics#query-parameters" target="_blank">Telematics</a> guide for more details.
382
+
383
+ You may list ***up to 3*** types using comma-separated format. For example: `types=gps,engineStates,obdOdometerMeters`.
384
+
385
+ *Note:* `auxInput3`-`auxInput10` count as a single type against the limit of 3. For example, you could list `types=engineStates,obdOdometerMeters,auxInput3,auxInput4` because `auxInput3` and `auxInput4` count as a single stat type. `auxInput1` and `auxInput2` still count as their own individual types.
386
+
387
+ - `ambientAirTemperatureMilliC`: The ambient air temperature reading in millidegree Celsius.
388
+ - `auxInput1`-`auxInput13`: Stat events from the <a href="https://kb.samsara.com/hc/en-us/articles/360043040512-Auxiliary-Inputs" target="_blank">auxiliary inputs</a> for the vehicle.
389
+ - `barometricPressurePa`: The barometric pressure reading in pascals.
390
+ - `batteryMilliVolts`: The vehicle battery voltage reading.
391
+ - `defLevelMilliPercent`: The Diesel Exhaust Fluid (DEF) level in milli percentage points (e.g. `99001`, `49999`, etc).
392
+ - `ecuSpeedMph`: The speed of the engine in miles per hour according to the ECU.
393
+ - `engineCoolantTemperatureMilliC`: The engine coolant temperature reading in millidegree Celsius.
394
+ - `engineImmobilizer`: The state of the engine immobilizer - Valid values: `ignition_disabled`, `ignition_enabled`. This stat type will only return states of our first Engine Immobilizer Hardware (ACC-EI). Please use <a href="https://developers.samsara.com/reference/getengineimmobilizerstates" target="_blank">Get engine immobilizer states</a> to get states for both Engine Immobilizer Hardware versions (incl. HW-EI21).
395
+ - `engineLoadPercent`: The engine load in percentage points (e.g. `99`, `50`, etc).
396
+ - `engineOilPressureKPa`: The engine oil pressure reading in kilopascals.
397
+ - `engineRpm`: The revolutions per minute of the engine.
398
+ - `engineStates`: The state of the engine (`Off`, `On`, `Idle`).
399
+ - `faultCodes`: The diagnostic fault codes for the vehicle.
400
+ - `fuelPercents`: The engine fuel level in percentage points (e.g. `99`, `50`, etc).
401
+ - `gps`: GPS data including lat/long, heading, speed, address book entry (if exists), and a reverse geocoded address.
402
+ - `gpsDistanceMeters`: The distance the vehicle has traveled since the gateway was installed based on GPS calculations.
403
+ - `gpsOdometerMeters`: Odometer reading provided by GPS calculations when OBD odometer cannot be pulled automatically. You must provide a manual odometer reading before this value is updated. Manual odometer readings can be provided via the [PATCH /fleet/vehicles/{id}](ref:updatevehicle) endpoint or through the <a href="https://kb.samsara.com/hc/en-us/articles/115005273667-Editing-Odometer-Reading" target="_blank">cloud dasbhoard</a>. Odometer readings that are manually set will update as GPS trip data is gathered. Try combining with `obdOdometerMeters`.
404
+ - `intakeManifoldTemperatureMilliC`: The intake manifold temperature reading in millidegree Celsius.
405
+ - `nfcCardScans`: ID card scans.
406
+ - `obdEngineSeconds`: The cumulative number of seconds the engine has run according to onboard diagnostics.
407
+ - `obdOdometerMeters`: The odometer reading according to onboard diagnostics. If Samsara does not have diagnostic coverage for a particular vehicle, the value for this stat type will be omitted. Try combining with `gpsOdometerMeters`.
408
+ - `syntheticEngineSeconds`: Data for the synthetic engine seconds for the vehicle.
409
+ - `evStateOfChargeMilliPercent`: Milli percent State of Charge for electric and hybrid vehicles. Not all EV and HEVs may report this field.
410
+ - `evChargingStatus`: Charging status for electric and hybrid vehicles. Not all EV and HEVs may report this field. Statuses: unknown - 0, not charging - 1, charging - 2.
411
+ - `evChargingEnergyMicroWh`: Charging energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
412
+ - `evChargingVoltageMilliVolt`: Charging voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
413
+ - `evChargingCurrentMilliAmp`: Charging current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
414
+ - `evConsumedEnergyMicroWh`: Consumed energy (including regenerated) for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
415
+ - `evRegeneratedEnergyMicroWh`: Regenerated energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
416
+ - `evBatteryVoltageMilliVolt`: Battery voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
417
+ - `evBatteryCurrentMilliAmp`: Battery current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
418
+ - `evBatteryStateOfHealthMilliPercent`: Milli percent battery state of health for electric and hybrid vehicles. Not all EV and HEVs may report this field.
419
+ - `evAverageBatteryTemperatureMilliCelsius`: Battery temperature for electric and hybrid vehicles in milli celsius. Not all EV and HEVs may report this field.
420
+ - `evDistanceDrivenMeters`: Electric distance driven for electric and hybrid vehicles in meters. Not all EV and HEVs may report this field.
421
+ - `spreaderLiquidRate`: Liquid spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
422
+ - `spreaderGranularRate`: Granular spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
423
+ - `spreaderPrewetRate`: Prewet spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
424
+ - `spreaderAirTemp`: Air (ambient) temperature in milli celsius reading from material spreader.
425
+ - `spreaderRoadTemp`: Road temperature reading in milli celsius from material spreader.
426
+ - `spreaderOnState`: Whether vehicle spreader is enabled.
427
+ - `spreaderActive`: Whether vehicle is actively spreading any material.
428
+ - `spreaderBlastState`: Whether vehicle is actively spreading material in ‘blast mode’.
429
+ - `spreaderGranularName`: Name of most recent type of granular material spread, read from the material spreader.
430
+ - `spreaderPrewetName`: Name of most recent type of prewet material spread, read from the material spreader.
431
+ - `spreaderLiquidName`: Name of most recent type of liquid material spread, read from the material spreader.
432
+ - `spreaderPlowStatus`: Snow plow status (`Up` or `Down`), as read from the material spreader. Note: this is separate from plow status defined via auxInput.
433
+ - `seatbeltDriver`: Seatbelt Driver Status as read from the vehicle. `Buckled` or `Unbuckled`. (Beta only)
434
+
435
+ decorations : typing.Optional[typing.Union[StatsHistoryRequestDecorationsItem, typing.Sequence[StatsHistoryRequestDecorationsItem]]]
436
+ Decorations to add to the primary stats listed in the `types` parameter. For example, if you wish to know the vehicle's location whenever the engine changes state, you may set `types=engineStates&decorations=gps`.
437
+
438
+ You may list ***up to 2*** decorations using comma-separated format. If multiple stats are listed in the `types` parameter, the decorations will be added to each one. For example: `types=engineStates,obdOdometerMeters,faultCodes&decorations=gps,fuelPercents` will list GPS and fuel decorations for each engine state change, each odometer reading, and each fault code. See the <a href="/docs/telematics#query-parameters" target="_blank">Telematics</a> guide for more details.
439
+
440
+ Note that decorations may significantly increase the response payload size.
441
+
442
+ - `ambientAirTemperatureMilliC`: The ambient air temperature reading in millidegree Celsius.
443
+ - `auxInput1`-`auxInput13`: Stat events from the <a href="https://kb.samsara.com/hc/en-us/articles/360043040512-Auxiliary-Inputs" target="_blank">auxiliary inputs</a> for the vehicle.
444
+ - `batteryMilliVolts`: The vehicle battery voltage reading.
445
+ - `barometricPressurePa`: The barometric pressure reading in pascals.
446
+ - `ecuSpeedMph`: The speed of the engine in miles per hour according to the ECU.
447
+ - `engineCoolantTemperatureMilliC`: The engine coolant temperature reading in millidegree Celsius.
448
+ - `engineImmobilizer`: The state of the engine immobilizer - Valid values: `ignition_disabled`, `ignition_enabled`. This stat type will only return states of our first Engine Immobilizer Hardware (ACC-EI). Please use <a href="https://developers.samsara.com/reference/getengineimmobilizerstates" target="_blank">Get engine immobilizer states</a> to get states for both Engine Immobilizer Hardware versions (incl. HW-EI21).
449
+ - `engineOilPressureKPa`: The engine oil pressure reading in kilopascals.
450
+ - `engineLoadPercent`: The engine load in percentage points (e.g. `99`, `50`, etc).
451
+ - `engineRpm`: The revolutions per minute of the engine.
452
+ - `engineStates`: The state of the engine (`Off`, `On`, `Idle`).
453
+ - `faultCodes`: The diagnostic fault codes for the vehicle.
454
+ - `fuelPercents`: The engine fuel level in percentage points (e.g. `99`, `50`, etc).
455
+ - `gps`: GPS data including lat/long, heading, speed, address book entry (if exists), and a reverse geocoded address.
456
+ - `gpsDistanceMeters`: The distance the vehicle has traveled since the gateway was installed based on GPS calculations.
457
+ - `intakeManifoldTemperatureMilliC`: The intake manifold temperature reading in millidegree Celsius.
458
+ - `nfcCardScans`: ID card scans.
459
+ - `obdEngineSeconds`: The cumulative number of seconds the engine has run according to onboard diagnostics.
460
+ - `obdOdometerMeters`: The odometer reading according to onboard diagnostics. If Samsara does not have diagnostic coverage for a particular vehicle, the value for this stat type will be omitted.
461
+ - `syntheticEngineSeconds`: Data for the synthetic engine seconds for the vehicle.
462
+ - `evStateOfChargeMilliPercent`: Milli percent State of Charge for electric and hybrid vehicles. Not all EV and HEVs may report this field.
463
+ - `evChargingStatus`: Charging status for electric and hybrid vehicles. Not all EV and HEVs may report this field. Statuses: unknown - 0, not charging - 1, charging - 2.
464
+ - `evChargingEnergyMicroWh`: Charging energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
465
+ - `evChargingVoltageMilliVolt`: Charging voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
466
+ - `evChargingCurrentMilliAmp`: Charging current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
467
+ - `evConsumedEnergyMicroWh`: Consumed energy (including regenerated) for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
468
+ - `evRegeneratedEnergyMicroWh`: Regenerated energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
469
+ - `evBatteryVoltageMilliVolt`: Battery voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
470
+ - `evBatteryCurrentMilliAmp`: Battery current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
471
+ - `evBatteryStateOfHealthMilliPercent`: Milli percent battery state of health for electric and hybrid vehicles. Not all EV and HEVs may report this field.
472
+ - `evAverageBatteryTemperatureMilliCelsius`: Battery temperature for electric and hybrid vehicles in milli celsius. Not all EV and HEVs may report this field.
473
+ - `evDistanceDrivenMeters`: Electric distance driven for electric and hybrid vehicles in meters. Not all EV and HEVs may report this field.
474
+ - `spreaderLiquidRate`: Liquid spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
475
+ - `spreaderGranularRate`: Granular spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
476
+ - `spreaderPrewetRate`: Prewet spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
477
+ - `spreaderAirTemp`: Air (ambient) temperature in milli celsius reading from material spreader.
478
+ - `spreaderRoadTemp`: Road temperature reading in milli celsius from material spreader.
479
+ - `spreaderOnState`: Whether vehicle spreader is enabled.
480
+ - `spreaderActive`: Whether vehicle is actively spreading any material.
481
+ - `spreaderBlastState`: Whether vehicle is actively spreading material in ‘blast mode’.
482
+ - `spreaderGranularName`: Name of most recent type of granular material spread, read from the material spreader.
483
+ - `spreaderPrewetName`: Name of most recent type of prewet material spread, read from the material spreader.
484
+ - `spreaderLiquidName`: Name of most recent type of liquid material spread, read from the material spreader.
485
+ - `spreaderPlowStatus`: Snow plow status (`Up` or `Down`), as read from the material spreader. Note: this is separate from plow status defined via auxInput.
486
+ - `seatbeltDriver`: Seatbelt Driver Status as read from the vehicle. `Buckled` or `Unbuckled`. (Beta only)
487
+
488
+ request_options : typing.Optional[RequestOptions]
489
+ Request-specific configuration.
490
+
491
+ Returns
492
+ -------
493
+ VehicleStatsListResponse
494
+ List of vehicle stats for the specified vehicles, stat type, and time range.
495
+
496
+ Examples
497
+ --------
498
+ from samsara import Samsara
499
+
500
+ client = Samsara(
501
+ token="YOUR_TOKEN",
502
+ )
503
+ client.vehicles.stats.history(
504
+ start_time="startTime",
505
+ end_time="endTime",
506
+ )
507
+ """
508
+ _response = self._raw_client.history(
509
+ start_time=start_time,
510
+ end_time=end_time,
511
+ after=after,
512
+ parent_tag_ids=parent_tag_ids,
513
+ tag_ids=tag_ids,
514
+ vehicle_ids=vehicle_ids,
515
+ types=types,
516
+ decorations=decorations,
517
+ request_options=request_options,
518
+ )
519
+ return _response.data
520
+
521
+
522
+ class AsyncStatsClient:
523
+ def __init__(self, *, client_wrapper: AsyncClientWrapper):
524
+ self._raw_client = AsyncRawStatsClient(client_wrapper=client_wrapper)
525
+
526
+ @property
527
+ def with_raw_response(self) -> AsyncRawStatsClient:
528
+ """
529
+ Retrieves a raw implementation of this client that returns raw responses.
530
+
531
+ Returns
532
+ -------
533
+ AsyncRawStatsClient
534
+ """
535
+ return self._raw_client
536
+
537
+ async def list(
538
+ self,
539
+ *,
540
+ after: typing.Optional[str] = None,
541
+ time: typing.Optional[str] = None,
542
+ parent_tag_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
543
+ tag_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
544
+ vehicle_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
545
+ types: typing.Optional[
546
+ typing.Union[StatsListRequestTypesItem, typing.Sequence[StatsListRequestTypesItem]]
547
+ ] = None,
548
+ request_options: typing.Optional[RequestOptions] = None,
549
+ ) -> VehicleStatsResponse:
550
+ """
551
+ Returns the last known stats of all vehicles at the given `time`. If no `time` is specified, the current time is used.
552
+
553
+ Related guide: <a href="/docs/telematics" target="_blank">Telematics</a>.
554
+
555
+ **Submit Feedback**: Likes, dislikes, and API feature requests should be filed as feedback in our <a href="https://forms.gle/zkD4NCH7HjKb7mm69" target="_blank">API feedback form</a>. If you encountered an issue or noticed inaccuracies in the API documentation, please <a href="https://www.samsara.com/help" target="_blank">submit a case</a> to our support team.
556
+
557
+ To use this endpoint, select **Read Vehicle Statistics** under the Vehicles category when creating or editing an API token. <a href="https://developers.samsara.com/docs/authentication#scopes-for-api-tokens" target="_blank">Learn More.</a>
558
+
559
+ Parameters
560
+ ----------
561
+ after : typing.Optional[str]
562
+ If specified, this should be the endCursor value from the previous page of results. When present, this request will return the next page of results that occur immediately after the previous page of results.
563
+
564
+ time : typing.Optional[str]
565
+ A filter on the data that returns the last known data points with timestamps less than or equal to this value. Defaults to now if not provided. Must be a string in RFC 3339 format. Millisecond precision and timezones are supported. (Example: `2020-01-27T07:06:25Z`).
566
+
567
+ parent_tag_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
568
+ A filter on the data based on this comma-separated list of parent tag IDs, for use by orgs with tag hierarchies. Specifying a parent tag will implicitly include all descendent tags of the parent tag. Example: `parentTagIds=345,678`
569
+
570
+ tag_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
571
+ A filter on the data based on this comma-separated list of tag IDs. Example: `tagIds=1234,5678`
572
+
573
+ vehicle_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
574
+ A filter on the data based on this comma-separated list of vehicle IDs. Example: `vehicleIds=1234,5678`
575
+
576
+ types : typing.Optional[typing.Union[StatsListRequestTypesItem, typing.Sequence[StatsListRequestTypesItem]]]
577
+ The stat types you want this endpoint to return information on. See also the <a href="/docs/telematics#query-parameters" target="_blank">Telematics</a> guide for more details.
578
+
579
+ You may list ***up to 3*** types using comma-separated format. For example: `types=gps,engineStates,obdOdometerMeters`.
580
+
581
+ *Note:* `auxInput3`-`auxInput10` count as a single type against the limit of 3. For example, you could list `types=engineStates,obdOdometerMeters,auxInput3,auxInput4` because `auxInput3` and `auxInput4` count as a single stat type. `auxInput1` and `auxInput2` still count as their own individual types.
582
+
583
+ - `ambientAirTemperatureMilliC`: The ambient air temperature reading in millidegree Celsius.
584
+ - `auxInput1`-`auxInput13`: Stat events from the <a href="https://kb.samsara.com/hc/en-us/articles/360043040512-Auxiliary-Inputs" target="_blank">auxiliary inputs</a> for the vehicle.
585
+ - `barometricPressurePa`: The barometric pressure reading in pascals.
586
+ - `batteryMilliVolts`: The vehicle battery voltage reading.
587
+ - `defLevelMilliPercent`: The Diesel Exhaust Fluid (DEF) level in milli percentage points (e.g. `99001`, `49999`, etc).
588
+ - `ecuSpeedMph`: The speed of the engine in miles per hour according to the ECU.
589
+ - `engineCoolantTemperatureMilliC`: The engine coolant temperature reading in millidegree Celsius.
590
+ - `engineImmobilizer`: The state of the engine immobilizer - Valid values: `ignition_disabled`, `ignition_enabled`. This stat type will only return states of our first Engine Immobilizer Hardware (ACC-EI). Please use <a href="https://developers.samsara.com/reference/getengineimmobilizerstates" target="_blank">Get engine immobilizer states</a> to get states for both Engine Immobilizer Hardware versions (incl. HW-EI21).
591
+ - `engineLoadPercent`: The engine load in percentage points (e.g. `99`, `50`, etc).
592
+ - `engineOilPressureKPa`: The engine oil pressure reading in kilopascals.
593
+ - `engineRpm`: The revolutions per minute of the engine.
594
+ - `engineStates`: The state of the engine (`Off`, `On`, `Idle`).
595
+ - `faultCodes`: The diagnostic fault codes for the vehicle.
596
+ - `fuelPercents`: The engine fuel level in percentage points (e.g. `99`, `50`, etc).
597
+ - `gps`: GPS data including lat/long, heading, speed, address book entry (if exists), and a reverse geocoded address.
598
+ - `gpsDistanceMeters`: The distance the vehicle has traveled since the gateway was installed based on GPS calculations.
599
+ - `gpsOdometerMeters`: Odometer reading provided by GPS calculations when OBD odometer cannot be pulled automatically. You must provide a manual odometer reading before this value is updated. Manual odometer readings can be provided via the [PATCH /fleet/vehicles/{id}](ref:updatevehicle) endpoint or through the <a href="https://kb.samsara.com/hc/en-us/articles/115005273667-Editing-Odometer-Reading" target="_blank">cloud dasbhoard</a>. Odometer readings that are manually set will update as GPS trip data is gathered. Try combining with `obdOdometerMeters`.
600
+ - `intakeManifoldTemperatureMilliC`: The intake manifold temperature reading in millidegree Celsius.
601
+ - `nfcCardScans`: ID card scans.
602
+ - `obdEngineSeconds`: The cumulative number of seconds the engine has run according to onboard diagnostics.
603
+ - `obdOdometerMeters`: The odometer reading according to onboard diagnostics. If Samsara does not have diagnostic coverage for a particular vehicle, the value for this stat type will be omitted. Try combining with `gpsOdometerMeters`.
604
+ - `syntheticEngineSeconds`: Data for the synthetic engine seconds for the vehicle.
605
+ - `evStateOfChargeMilliPercent`: Milli percent State of Charge for electric and hybrid vehicles. Not all EV and HEVs may report this field.
606
+ - `evChargingStatus`: Charging status for electric and hybrid vehicles. Not all EV and HEVs may report this field. Statuses: unknown - 0, not charging - 1, charging - 2.
607
+ - `evChargingEnergyMicroWh`: Charging energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
608
+ - `evChargingVoltageMilliVolt`: Charging voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
609
+ - `evChargingCurrentMilliAmp`: Charging current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
610
+ - `evConsumedEnergyMicroWh`: Consumed energy (including regenerated) for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
611
+ - `evRegeneratedEnergyMicroWh`: Regenerated energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
612
+ - `evBatteryVoltageMilliVolt`: Battery voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
613
+ - `evBatteryCurrentMilliAmp`: Battery current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
614
+ - `evBatteryStateOfHealthMilliPercent`: Milli percent battery state of health for electric and hybrid vehicles. Not all EV and HEVs may report this field.
615
+ - `evAverageBatteryTemperatureMilliCelsius`: Battery temperature for electric and hybrid vehicles in milli celsius. Not all EV and HEVs may report this field.
616
+ - `evDistanceDrivenMeters`: Electric distance driven for electric and hybrid vehicles in meters. Not all EV and HEVs may report this field.
617
+ - `spreaderLiquidRate`: Liquid spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
618
+ - `spreaderGranularRate`: Granular spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
619
+ - `spreaderPrewetRate`: Prewet spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
620
+ - `spreaderAirTemp`: Air (ambient) temperature in milli celsius reading from material spreader.
621
+ - `spreaderRoadTemp`: Road temperature reading in milli celsius from material spreader.
622
+ - `spreaderOnState`: Whether vehicle spreader is enabled.
623
+ - `spreaderActive`: Whether vehicle is actively spreading any material.
624
+ - `spreaderBlastState`: Whether vehicle is actively spreading material in ‘blast mode’.
625
+ - `spreaderGranularName`: Name of most recent type of granular material spread, read from the material spreader.
626
+ - `spreaderPrewetName`: Name of most recent type of prewet material spread, read from the material spreader.
627
+ - `spreaderLiquidName`: Name of most recent type of liquid material spread, read from the material spreader.
628
+ - `spreaderPlowStatus`: Snow plow status (`Up` or `Down`), as read from the material spreader. Note: this is separate from plow status defined via auxInput.
629
+ - `seatbeltDriver`: Seatbelt Driver Status as read from the vehicle. `Buckled` or `Unbuckled`. (Beta only)
630
+
631
+ request_options : typing.Optional[RequestOptions]
632
+ Request-specific configuration.
633
+
634
+ Returns
635
+ -------
636
+ VehicleStatsResponse
637
+ Vehicle stats snapshot
638
+
639
+ Examples
640
+ --------
641
+ import asyncio
642
+
643
+ from samsara import AsyncSamsara
644
+
645
+ client = AsyncSamsara(
646
+ token="YOUR_TOKEN",
647
+ )
648
+
649
+
650
+ async def main() -> None:
651
+ await client.vehicles.stats.list()
652
+
653
+
654
+ asyncio.run(main())
655
+ """
656
+ _response = await self._raw_client.list(
657
+ after=after,
658
+ time=time,
659
+ parent_tag_ids=parent_tag_ids,
660
+ tag_ids=tag_ids,
661
+ vehicle_ids=vehicle_ids,
662
+ types=types,
663
+ request_options=request_options,
664
+ )
665
+ return _response.data
666
+
667
+ async def feed(
668
+ self,
669
+ *,
670
+ after: typing.Optional[str] = None,
671
+ parent_tag_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
672
+ tag_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
673
+ vehicle_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
674
+ types: typing.Optional[
675
+ typing.Union[StatsFeedRequestTypesItem, typing.Sequence[StatsFeedRequestTypesItem]]
676
+ ] = None,
677
+ decorations: typing.Optional[
678
+ typing.Union[StatsFeedRequestDecorationsItem, typing.Sequence[StatsFeedRequestDecorationsItem]]
679
+ ] = None,
680
+ request_options: typing.Optional[RequestOptions] = None,
681
+ ) -> VehicleStatsListResponse:
682
+ """
683
+ Follow a feed of vehicle stats.
684
+
685
+ Your first call to this endpoint will provide you with the most recent stats for each vehicle and an `endCursor`.
686
+
687
+ You can the provide the `endCursor` value to the `after` query parameter to get all updates since the last call you made.
688
+
689
+ If `hasNextPage` is `false`, no new data is immediately available. You should wait a minimum of 5 seconds making a subsequent request.
690
+
691
+ Related guide: <a href="/docs/telematics" target="_blank">Telematics</a>.
692
+
693
+ **Submit Feedback**: Likes, dislikes, and API feature requests should be filed as feedback in our <a href="https://forms.gle/zkD4NCH7HjKb7mm69" target="_blank">API feedback form</a>. If you encountered an issue or noticed inaccuracies in the API documentation, please <a href="https://www.samsara.com/help" target="_blank">submit a case</a> to our support team.
694
+
695
+ To use this endpoint, select **Read Vehicle Statistics** under the Vehicles category when creating or editing an API token. <a href="https://developers.samsara.com/docs/authentication#scopes-for-api-tokens" target="_blank">Learn More.</a>
696
+
697
+ Parameters
698
+ ----------
699
+ after : typing.Optional[str]
700
+ If specified, this should be the endCursor value from the previous page of results. When present, this request will return the next page of results that occur immediately after the previous page of results.
701
+
702
+ parent_tag_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
703
+ A filter on the data based on this comma-separated list of parent tag IDs, for use by orgs with tag hierarchies. Specifying a parent tag will implicitly include all descendent tags of the parent tag. Example: `parentTagIds=345,678`
704
+
705
+ tag_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
706
+ A filter on the data based on this comma-separated list of tag IDs. Example: `tagIds=1234,5678`
707
+
708
+ vehicle_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
709
+ A filter on the data based on this comma-separated list of vehicle IDs. Example: `vehicleIds=1234,5678`
710
+
711
+ types : typing.Optional[typing.Union[StatsFeedRequestTypesItem, typing.Sequence[StatsFeedRequestTypesItem]]]
712
+ The stat types you want this endpoint to return information on. See also the <a href="/docs/telematics#query-parameters" target="_blank">Telematics</a> guide for more details.
713
+
714
+ You may list ***up to 3*** types using comma-separated format. For example: `types=gps,engineStates,obdOdometerMeters`.
715
+
716
+ *Note:* `auxInput3`-`auxInput10` count as a single type against the limit of 3. For example, you could list `types=engineStates,obdOdometerMeters,auxInput3,auxInput4` because `auxInput3` and `auxInput4` count as a single stat type. `auxInput1` and `auxInput2` still count as their own individual types.
717
+
718
+ - `ambientAirTemperatureMilliC`: The ambient air temperature reading in millidegree Celsius.
719
+ - `auxInput1`-`auxInput13`: Stat events from the <a href="https://kb.samsara.com/hc/en-us/articles/360043040512-Auxiliary-Inputs" target="_blank">auxiliary inputs</a> for the vehicle.
720
+ - `barometricPressurePa`: The barometric pressure reading in pascals.
721
+ - `batteryMilliVolts`: The vehicle battery voltage reading.
722
+ - `defLevelMilliPercent`: The Diesel Exhaust Fluid (DEF) level in milli percentage points (e.g. `99001`, `49999`, etc).
723
+ - `ecuSpeedMph`: The speed of the engine in miles per hour according to the ECU.
724
+ - `engineCoolantTemperatureMilliC`: The engine coolant temperature reading in millidegree Celsius.
725
+ - `engineImmobilizer`: The state of the engine immobilizer - Valid values: `ignition_disabled`, `ignition_enabled`. This stat type will only return states of our first Engine Immobilizer Hardware (ACC-EI). Please use <a href="https://developers.samsara.com/reference/getengineimmobilizerstates" target="_blank">Get engine immobilizer states</a> to get states for both Engine Immobilizer Hardware versions (incl. HW-EI21).
726
+ - `engineLoadPercent`: The engine load in percentage points (e.g. `99`, `50`, etc).
727
+ - `engineOilPressureKPa`: The engine oil pressure reading in kilopascals.
728
+ - `engineRpm`: The revolutions per minute of the engine.
729
+ - `engineStates`: The state of the engine (`Off`, `On`, `Idle`).
730
+ - `faultCodes`: The diagnostic fault codes for the vehicle.
731
+ - `fuelPercents`: The engine fuel level in percentage points (e.g. `99`, `50`, etc).
732
+ - `gps`: GPS data including lat/long, heading, speed, address book entry (if exists), and a reverse geocoded address.
733
+ - `gpsDistanceMeters`: The distance the vehicle has traveled since the gateway was installed based on GPS calculations.
734
+ - `gpsOdometerMeters`: Odometer reading provided by GPS calculations when OBD odometer cannot be pulled automatically. You must provide a manual odometer reading before this value is updated. Manual odometer readings can be provided via the [PATCH /fleet/vehicles/{id}](ref:updatevehicle) endpoint or through the <a href="https://kb.samsara.com/hc/en-us/articles/115005273667-Editing-Odometer-Reading" target="_blank">cloud dasbhoard</a>. Odometer readings that are manually set will update as GPS trip data is gathered. Try combining with `obdOdometerMeters`.
735
+ - `intakeManifoldTemperatureMilliC`: The intake manifold temperature reading in millidegree Celsius.
736
+ - `nfcCardScans`: ID card scans.
737
+ - `obdEngineSeconds`: The cumulative number of seconds the engine has run according to onboard diagnostics.
738
+ - `obdOdometerMeters`: The odometer reading according to onboard diagnostics. If Samsara does not have diagnostic coverage for a particular vehicle, the value for this stat type will be omitted. Try combining with `gpsOdometerMeters`.
739
+ - `syntheticEngineSeconds`: Data for the synthetic engine seconds for the vehicle.
740
+ - `evStateOfChargeMilliPercent`: Milli percent State of Charge for electric and hybrid vehicles. Not all EV and HEVs may report this field.
741
+ - `evChargingStatus`: Charging status for electric and hybrid vehicles. Not all EV and HEVs may report this field. Statuses: unknown - 0, not charging - 1, charging - 2.
742
+ - `evChargingEnergyMicroWh`: Charging energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
743
+ - `evChargingVoltageMilliVolt`: Charging voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
744
+ - `evChargingCurrentMilliAmp`: Charging current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
745
+ - `evConsumedEnergyMicroWh`: Consumed energy (including regenerated) for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
746
+ - `evRegeneratedEnergyMicroWh`: Regenerated energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
747
+ - `evBatteryVoltageMilliVolt`: Battery voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
748
+ - `evBatteryCurrentMilliAmp`: Battery current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
749
+ - `evBatteryStateOfHealthMilliPercent`: Milli percent battery state of health for electric and hybrid vehicles. Not all EV and HEVs may report this field.
750
+ - `evAverageBatteryTemperatureMilliCelsius`: Battery temperature for electric and hybrid vehicles in milli celsius. Not all EV and HEVs may report this field.
751
+ - `evDistanceDrivenMeters`: Electric distance driven for electric and hybrid vehicles in meters. Not all EV and HEVs may report this field.
752
+ - `spreaderLiquidRate`: Liquid spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
753
+ - `spreaderGranularRate`: Granular spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
754
+ - `spreaderPrewetRate`: Prewet spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
755
+ - `spreaderAirTemp`: Air (ambient) temperature in milli celsius reading from material spreader.
756
+ - `spreaderRoadTemp`: Road temperature reading in milli celsius from material spreader.
757
+ - `spreaderOnState`: Whether vehicle spreader is enabled.
758
+ - `spreaderActive`: Whether vehicle is actively spreading any material.
759
+ - `spreaderBlastState`: Whether vehicle is actively spreading material in ‘blast mode’.
760
+ - `spreaderGranularName`: Name of most recent type of granular material spread, read from the material spreader.
761
+ - `spreaderPrewetName`: Name of most recent type of prewet material spread, read from the material spreader.
762
+ - `spreaderLiquidName`: Name of most recent type of liquid material spread, read from the material spreader.
763
+ - `spreaderPlowStatus`: Snow plow status (`Up` or `Down`), as read from the material spreader. Note: this is separate from plow status defined via auxInput.
764
+ - `seatbeltDriver`: Seatbelt Driver Status as read from the vehicle. `Buckled` or `Unbuckled`. (Beta only)
765
+
766
+ decorations : typing.Optional[typing.Union[StatsFeedRequestDecorationsItem, typing.Sequence[StatsFeedRequestDecorationsItem]]]
767
+ Decorations to add to the primary stats listed in the `types` parameter. For example, if you wish to know the vehicle's location whenever the engine changes state, you may set `types=engineStates&decorations=gps`.
768
+
769
+ You may list ***up to 2*** decorations using comma-separated format. If multiple stats are listed in the `types` parameter, the decorations will be added to each one. For example: `types=engineStates,obdOdometerMeters,faultCodes&decorations=gps,fuelPercents` will list GPS and fuel decorations for each engine state change, each odometer reading, and each fault code. See the <a href="/docs/telematics#query-parameters" target="_blank">Telematics</a> guide for more details.
770
+
771
+ Note that decorations may significantly increase the response payload size.
772
+
773
+ - `ambientAirTemperatureMilliC`: The ambient air temperature reading in millidegree Celsius.
774
+ - `auxInput1`-`auxInput13`: Stat events from the <a href="https://kb.samsara.com/hc/en-us/articles/360043040512-Auxiliary-Inputs" target="_blank">auxiliary inputs</a> for the vehicle.
775
+ - `batteryMilliVolts`: The vehicle battery voltage reading.
776
+ - `barometricPressurePa`: The barometric pressure reading in pascals.
777
+ - `ecuSpeedMph`: The speed of the engine in miles per hour according to the ECU.
778
+ - `engineCoolantTemperatureMilliC`: The engine coolant temperature reading in millidegree Celsius.
779
+ - `engineImmobilizer`: The state of the engine immobilizer - Valid values: `ignition_disabled`, `ignition_enabled`. This stat type will only return states of our first Engine Immobilizer Hardware (ACC-EI). Please use <a href="https://developers.samsara.com/reference/getengineimmobilizerstates" target="_blank">Get engine immobilizer states</a> to get states for both Engine Immobilizer Hardware versions (incl. HW-EI21).
780
+ - `engineOilPressureKPa`: The engine oil pressure reading in kilopascals.
781
+ - `engineLoadPercent`: The engine load in percentage points (e.g. `99`, `50`, etc).
782
+ - `engineRpm`: The revolutions per minute of the engine.
783
+ - `engineStates`: The state of the engine (`Off`, `On`, `Idle`).
784
+ - `faultCodes`: The diagnostic fault codes for the vehicle.
785
+ - `fuelPercents`: The engine fuel level in percentage points (e.g. `99`, `50`, etc).
786
+ - `gps`: GPS data including lat/long, heading, speed, address book entry (if exists), and a reverse geocoded address.
787
+ - `gpsDistanceMeters`: The distance the vehicle has traveled since the gateway was installed based on GPS calculations.
788
+ - `intakeManifoldTemperatureMilliC`: The intake manifold temperature reading in millidegree Celsius.
789
+ - `nfcCardScans`: ID card scans.
790
+ - `obdEngineSeconds`: The cumulative number of seconds the engine has run according to onboard diagnostics.
791
+ - `obdOdometerMeters`: The odometer reading according to onboard diagnostics. If Samsara does not have diagnostic coverage for a particular vehicle, the value for this stat type will be omitted.
792
+ - `syntheticEngineSeconds`: Data for the synthetic engine seconds for the vehicle.
793
+ - `evStateOfChargeMilliPercent`: Milli percent State of Charge for electric and hybrid vehicles. Not all EV and HEVs may report this field.
794
+ - `evChargingStatus`: Charging status for electric and hybrid vehicles. Not all EV and HEVs may report this field. Statuses: unknown - 0, not charging - 1, charging - 2.
795
+ - `evChargingEnergyMicroWh`: Charging energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
796
+ - `evChargingVoltageMilliVolt`: Charging voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
797
+ - `evChargingCurrentMilliAmp`: Charging current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
798
+ - `evConsumedEnergyMicroWh`: Consumed energy (including regenerated) for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
799
+ - `evRegeneratedEnergyMicroWh`: Regenerated energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
800
+ - `evBatteryVoltageMilliVolt`: Battery voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
801
+ - `evBatteryCurrentMilliAmp`: Battery current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
802
+ - `evBatteryStateOfHealthMilliPercent`: Milli percent battery state of health for electric and hybrid vehicles. Not all EV and HEVs may report this field.
803
+ - `evAverageBatteryTemperatureMilliCelsius`: Battery temperature for electric and hybrid vehicles in milli celsius. Not all EV and HEVs may report this field.
804
+ - `evDistanceDrivenMeters`: Electric distance driven for electric and hybrid vehicles in meters. Not all EV and HEVs may report this field.
805
+ - `spreaderLiquidRate`: Liquid spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
806
+ - `spreaderGranularRate`: Granular spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
807
+ - `spreaderPrewetRate`: Prewet spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
808
+ - `spreaderAirTemp`: Air (ambient) temperature in milli celsius reading from material spreader.
809
+ - `spreaderRoadTemp`: Road temperature reading in milli celsius from material spreader.
810
+ - `spreaderOnState`: Whether vehicle spreader is enabled.
811
+ - `spreaderActive`: Whether vehicle is actively spreading any material.
812
+ - `spreaderBlastState`: Whether vehicle is actively spreading material in ‘blast mode’.
813
+ - `spreaderGranularName`: Name of most recent type of granular material spread, read from the material spreader.
814
+ - `spreaderPrewetName`: Name of most recent type of prewet material spread, read from the material spreader.
815
+ - `spreaderLiquidName`: Name of most recent type of liquid material spread, read from the material spreader.
816
+ - `spreaderPlowStatus`: Snow plow status (`Up` or `Down`), as read from the material spreader. Note: this is separate from plow status defined via auxInput.
817
+ - `seatbeltDriver`: Seatbelt Driver Status as read from the vehicle. `Buckled` or `Unbuckled`. (Beta only)
818
+
819
+ request_options : typing.Optional[RequestOptions]
820
+ Request-specific configuration.
821
+
822
+ Returns
823
+ -------
824
+ VehicleStatsListResponse
825
+ List of stat events for the specified vehicles and stat types.
826
+
827
+ Examples
828
+ --------
829
+ import asyncio
830
+
831
+ from samsara import AsyncSamsara
832
+
833
+ client = AsyncSamsara(
834
+ token="YOUR_TOKEN",
835
+ )
836
+
837
+
838
+ async def main() -> None:
839
+ await client.vehicles.stats.feed()
840
+
841
+
842
+ asyncio.run(main())
843
+ """
844
+ _response = await self._raw_client.feed(
845
+ after=after,
846
+ parent_tag_ids=parent_tag_ids,
847
+ tag_ids=tag_ids,
848
+ vehicle_ids=vehicle_ids,
849
+ types=types,
850
+ decorations=decorations,
851
+ request_options=request_options,
852
+ )
853
+ return _response.data
854
+
855
+ async def history(
856
+ self,
857
+ *,
858
+ start_time: str,
859
+ end_time: str,
860
+ after: typing.Optional[str] = None,
861
+ parent_tag_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
862
+ tag_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
863
+ vehicle_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
864
+ types: typing.Optional[
865
+ typing.Union[StatsHistoryRequestTypesItem, typing.Sequence[StatsHistoryRequestTypesItem]]
866
+ ] = None,
867
+ decorations: typing.Optional[
868
+ typing.Union[StatsHistoryRequestDecorationsItem, typing.Sequence[StatsHistoryRequestDecorationsItem]]
869
+ ] = None,
870
+ request_options: typing.Optional[RequestOptions] = None,
871
+ ) -> VehicleStatsListResponse:
872
+ """
873
+ Returns vehicle stats during the given time range for all vehicles. This can be optionally filtered by tags or specific vehicle IDs.
874
+
875
+ Related guide: <a href="/docs/telematics" target="_blank">Telematics</a>.
876
+
877
+ **Submit Feedback**: Likes, dislikes, and API feature requests should be filed as feedback in our <a href="https://forms.gle/zkD4NCH7HjKb7mm69" target="_blank">API feedback form</a>. If you encountered an issue or noticed inaccuracies in the API documentation, please <a href="https://www.samsara.com/help" target="_blank">submit a case</a> to our support team.
878
+
879
+ To use this endpoint, select **Read Vehicle Statistics** under the Vehicles category when creating or editing an API token. <a href="https://developers.samsara.com/docs/authentication#scopes-for-api-tokens" target="_blank">Learn More.</a>
880
+
881
+ Parameters
882
+ ----------
883
+ start_time : str
884
+ A start time in RFC 3339 format. Millisecond precision and timezones are supported. (Examples: 2019-06-13T19:08:25Z, 2019-06-13T19:08:25.455Z, OR 2015-09-15T14:00:12-04:00).
885
+
886
+ end_time : str
887
+ An end time in RFC 3339 format. Millisecond precision and timezones are supported. (Examples: 2019-06-13T19:08:25Z, 2019-06-13T19:08:25.455Z, OR 2015-09-15T14:00:12-04:00).
888
+
889
+ after : typing.Optional[str]
890
+ If specified, this should be the endCursor value from the previous page of results. When present, this request will return the next page of results that occur immediately after the previous page of results.
891
+
892
+ parent_tag_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
893
+ A filter on the data based on this comma-separated list of parent tag IDs, for use by orgs with tag hierarchies. Specifying a parent tag will implicitly include all descendent tags of the parent tag. Example: `parentTagIds=345,678`
894
+
895
+ tag_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
896
+ A filter on the data based on this comma-separated list of tag IDs. Example: `tagIds=1234,5678`
897
+
898
+ vehicle_ids : typing.Optional[typing.Union[str, typing.Sequence[str]]]
899
+ A filter on the data based on this comma-separated list of vehicle IDs. Example: `vehicleIds=1234,5678`
900
+
901
+ types : typing.Optional[typing.Union[StatsHistoryRequestTypesItem, typing.Sequence[StatsHistoryRequestTypesItem]]]
902
+ The stat types you want this endpoint to return information on. See also the <a href="/docs/telematics#query-parameters" target="_blank">Telematics</a> guide for more details.
903
+
904
+ You may list ***up to 3*** types using comma-separated format. For example: `types=gps,engineStates,obdOdometerMeters`.
905
+
906
+ *Note:* `auxInput3`-`auxInput10` count as a single type against the limit of 3. For example, you could list `types=engineStates,obdOdometerMeters,auxInput3,auxInput4` because `auxInput3` and `auxInput4` count as a single stat type. `auxInput1` and `auxInput2` still count as their own individual types.
907
+
908
+ - `ambientAirTemperatureMilliC`: The ambient air temperature reading in millidegree Celsius.
909
+ - `auxInput1`-`auxInput13`: Stat events from the <a href="https://kb.samsara.com/hc/en-us/articles/360043040512-Auxiliary-Inputs" target="_blank">auxiliary inputs</a> for the vehicle.
910
+ - `barometricPressurePa`: The barometric pressure reading in pascals.
911
+ - `batteryMilliVolts`: The vehicle battery voltage reading.
912
+ - `defLevelMilliPercent`: The Diesel Exhaust Fluid (DEF) level in milli percentage points (e.g. `99001`, `49999`, etc).
913
+ - `ecuSpeedMph`: The speed of the engine in miles per hour according to the ECU.
914
+ - `engineCoolantTemperatureMilliC`: The engine coolant temperature reading in millidegree Celsius.
915
+ - `engineImmobilizer`: The state of the engine immobilizer - Valid values: `ignition_disabled`, `ignition_enabled`. This stat type will only return states of our first Engine Immobilizer Hardware (ACC-EI). Please use <a href="https://developers.samsara.com/reference/getengineimmobilizerstates" target="_blank">Get engine immobilizer states</a> to get states for both Engine Immobilizer Hardware versions (incl. HW-EI21).
916
+ - `engineLoadPercent`: The engine load in percentage points (e.g. `99`, `50`, etc).
917
+ - `engineOilPressureKPa`: The engine oil pressure reading in kilopascals.
918
+ - `engineRpm`: The revolutions per minute of the engine.
919
+ - `engineStates`: The state of the engine (`Off`, `On`, `Idle`).
920
+ - `faultCodes`: The diagnostic fault codes for the vehicle.
921
+ - `fuelPercents`: The engine fuel level in percentage points (e.g. `99`, `50`, etc).
922
+ - `gps`: GPS data including lat/long, heading, speed, address book entry (if exists), and a reverse geocoded address.
923
+ - `gpsDistanceMeters`: The distance the vehicle has traveled since the gateway was installed based on GPS calculations.
924
+ - `gpsOdometerMeters`: Odometer reading provided by GPS calculations when OBD odometer cannot be pulled automatically. You must provide a manual odometer reading before this value is updated. Manual odometer readings can be provided via the [PATCH /fleet/vehicles/{id}](ref:updatevehicle) endpoint or through the <a href="https://kb.samsara.com/hc/en-us/articles/115005273667-Editing-Odometer-Reading" target="_blank">cloud dasbhoard</a>. Odometer readings that are manually set will update as GPS trip data is gathered. Try combining with `obdOdometerMeters`.
925
+ - `intakeManifoldTemperatureMilliC`: The intake manifold temperature reading in millidegree Celsius.
926
+ - `nfcCardScans`: ID card scans.
927
+ - `obdEngineSeconds`: The cumulative number of seconds the engine has run according to onboard diagnostics.
928
+ - `obdOdometerMeters`: The odometer reading according to onboard diagnostics. If Samsara does not have diagnostic coverage for a particular vehicle, the value for this stat type will be omitted. Try combining with `gpsOdometerMeters`.
929
+ - `syntheticEngineSeconds`: Data for the synthetic engine seconds for the vehicle.
930
+ - `evStateOfChargeMilliPercent`: Milli percent State of Charge for electric and hybrid vehicles. Not all EV and HEVs may report this field.
931
+ - `evChargingStatus`: Charging status for electric and hybrid vehicles. Not all EV and HEVs may report this field. Statuses: unknown - 0, not charging - 1, charging - 2.
932
+ - `evChargingEnergyMicroWh`: Charging energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
933
+ - `evChargingVoltageMilliVolt`: Charging voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
934
+ - `evChargingCurrentMilliAmp`: Charging current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
935
+ - `evConsumedEnergyMicroWh`: Consumed energy (including regenerated) for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
936
+ - `evRegeneratedEnergyMicroWh`: Regenerated energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
937
+ - `evBatteryVoltageMilliVolt`: Battery voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
938
+ - `evBatteryCurrentMilliAmp`: Battery current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
939
+ - `evBatteryStateOfHealthMilliPercent`: Milli percent battery state of health for electric and hybrid vehicles. Not all EV and HEVs may report this field.
940
+ - `evAverageBatteryTemperatureMilliCelsius`: Battery temperature for electric and hybrid vehicles in milli celsius. Not all EV and HEVs may report this field.
941
+ - `evDistanceDrivenMeters`: Electric distance driven for electric and hybrid vehicles in meters. Not all EV and HEVs may report this field.
942
+ - `spreaderLiquidRate`: Liquid spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
943
+ - `spreaderGranularRate`: Granular spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
944
+ - `spreaderPrewetRate`: Prewet spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
945
+ - `spreaderAirTemp`: Air (ambient) temperature in milli celsius reading from material spreader.
946
+ - `spreaderRoadTemp`: Road temperature reading in milli celsius from material spreader.
947
+ - `spreaderOnState`: Whether vehicle spreader is enabled.
948
+ - `spreaderActive`: Whether vehicle is actively spreading any material.
949
+ - `spreaderBlastState`: Whether vehicle is actively spreading material in ‘blast mode’.
950
+ - `spreaderGranularName`: Name of most recent type of granular material spread, read from the material spreader.
951
+ - `spreaderPrewetName`: Name of most recent type of prewet material spread, read from the material spreader.
952
+ - `spreaderLiquidName`: Name of most recent type of liquid material spread, read from the material spreader.
953
+ - `spreaderPlowStatus`: Snow plow status (`Up` or `Down`), as read from the material spreader. Note: this is separate from plow status defined via auxInput.
954
+ - `seatbeltDriver`: Seatbelt Driver Status as read from the vehicle. `Buckled` or `Unbuckled`. (Beta only)
955
+
956
+ decorations : typing.Optional[typing.Union[StatsHistoryRequestDecorationsItem, typing.Sequence[StatsHistoryRequestDecorationsItem]]]
957
+ Decorations to add to the primary stats listed in the `types` parameter. For example, if you wish to know the vehicle's location whenever the engine changes state, you may set `types=engineStates&decorations=gps`.
958
+
959
+ You may list ***up to 2*** decorations using comma-separated format. If multiple stats are listed in the `types` parameter, the decorations will be added to each one. For example: `types=engineStates,obdOdometerMeters,faultCodes&decorations=gps,fuelPercents` will list GPS and fuel decorations for each engine state change, each odometer reading, and each fault code. See the <a href="/docs/telematics#query-parameters" target="_blank">Telematics</a> guide for more details.
960
+
961
+ Note that decorations may significantly increase the response payload size.
962
+
963
+ - `ambientAirTemperatureMilliC`: The ambient air temperature reading in millidegree Celsius.
964
+ - `auxInput1`-`auxInput13`: Stat events from the <a href="https://kb.samsara.com/hc/en-us/articles/360043040512-Auxiliary-Inputs" target="_blank">auxiliary inputs</a> for the vehicle.
965
+ - `batteryMilliVolts`: The vehicle battery voltage reading.
966
+ - `barometricPressurePa`: The barometric pressure reading in pascals.
967
+ - `ecuSpeedMph`: The speed of the engine in miles per hour according to the ECU.
968
+ - `engineCoolantTemperatureMilliC`: The engine coolant temperature reading in millidegree Celsius.
969
+ - `engineImmobilizer`: The state of the engine immobilizer - Valid values: `ignition_disabled`, `ignition_enabled`. This stat type will only return states of our first Engine Immobilizer Hardware (ACC-EI). Please use <a href="https://developers.samsara.com/reference/getengineimmobilizerstates" target="_blank">Get engine immobilizer states</a> to get states for both Engine Immobilizer Hardware versions (incl. HW-EI21).
970
+ - `engineOilPressureKPa`: The engine oil pressure reading in kilopascals.
971
+ - `engineLoadPercent`: The engine load in percentage points (e.g. `99`, `50`, etc).
972
+ - `engineRpm`: The revolutions per minute of the engine.
973
+ - `engineStates`: The state of the engine (`Off`, `On`, `Idle`).
974
+ - `faultCodes`: The diagnostic fault codes for the vehicle.
975
+ - `fuelPercents`: The engine fuel level in percentage points (e.g. `99`, `50`, etc).
976
+ - `gps`: GPS data including lat/long, heading, speed, address book entry (if exists), and a reverse geocoded address.
977
+ - `gpsDistanceMeters`: The distance the vehicle has traveled since the gateway was installed based on GPS calculations.
978
+ - `intakeManifoldTemperatureMilliC`: The intake manifold temperature reading in millidegree Celsius.
979
+ - `nfcCardScans`: ID card scans.
980
+ - `obdEngineSeconds`: The cumulative number of seconds the engine has run according to onboard diagnostics.
981
+ - `obdOdometerMeters`: The odometer reading according to onboard diagnostics. If Samsara does not have diagnostic coverage for a particular vehicle, the value for this stat type will be omitted.
982
+ - `syntheticEngineSeconds`: Data for the synthetic engine seconds for the vehicle.
983
+ - `evStateOfChargeMilliPercent`: Milli percent State of Charge for electric and hybrid vehicles. Not all EV and HEVs may report this field.
984
+ - `evChargingStatus`: Charging status for electric and hybrid vehicles. Not all EV and HEVs may report this field. Statuses: unknown - 0, not charging - 1, charging - 2.
985
+ - `evChargingEnergyMicroWh`: Charging energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
986
+ - `evChargingVoltageMilliVolt`: Charging voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
987
+ - `evChargingCurrentMilliAmp`: Charging current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
988
+ - `evConsumedEnergyMicroWh`: Consumed energy (including regenerated) for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
989
+ - `evRegeneratedEnergyMicroWh`: Regenerated energy for electric and hybrid vehicles in microwatt hours. Not all EV and HEVs may report this field.
990
+ - `evBatteryVoltageMilliVolt`: Battery voltage for electric and hybrid vehicles in milli volts. Not all EV and HEVs may report this field.
991
+ - `evBatteryCurrentMilliAmp`: Battery current for electric and hybrid vehicles in milli amps. Not all EV and HEVs may report this field.
992
+ - `evBatteryStateOfHealthMilliPercent`: Milli percent battery state of health for electric and hybrid vehicles. Not all EV and HEVs may report this field.
993
+ - `evAverageBatteryTemperatureMilliCelsius`: Battery temperature for electric and hybrid vehicles in milli celsius. Not all EV and HEVs may report this field.
994
+ - `evDistanceDrivenMeters`: Electric distance driven for electric and hybrid vehicles in meters. Not all EV and HEVs may report this field.
995
+ - `spreaderLiquidRate`: Liquid spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
996
+ - `spreaderGranularRate`: Granular spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
997
+ - `spreaderPrewetRate`: Prewet spread rate reading in milliliters per meter, read from the material spreader. Unfiltered live stats are supplied as-read from the Material Spreader unit. Readings do not consider total spread rate(s) over time or distance.
998
+ - `spreaderAirTemp`: Air (ambient) temperature in milli celsius reading from material spreader.
999
+ - `spreaderRoadTemp`: Road temperature reading in milli celsius from material spreader.
1000
+ - `spreaderOnState`: Whether vehicle spreader is enabled.
1001
+ - `spreaderActive`: Whether vehicle is actively spreading any material.
1002
+ - `spreaderBlastState`: Whether vehicle is actively spreading material in ‘blast mode’.
1003
+ - `spreaderGranularName`: Name of most recent type of granular material spread, read from the material spreader.
1004
+ - `spreaderPrewetName`: Name of most recent type of prewet material spread, read from the material spreader.
1005
+ - `spreaderLiquidName`: Name of most recent type of liquid material spread, read from the material spreader.
1006
+ - `spreaderPlowStatus`: Snow plow status (`Up` or `Down`), as read from the material spreader. Note: this is separate from plow status defined via auxInput.
1007
+ - `seatbeltDriver`: Seatbelt Driver Status as read from the vehicle. `Buckled` or `Unbuckled`. (Beta only)
1008
+
1009
+ request_options : typing.Optional[RequestOptions]
1010
+ Request-specific configuration.
1011
+
1012
+ Returns
1013
+ -------
1014
+ VehicleStatsListResponse
1015
+ List of vehicle stats for the specified vehicles, stat type, and time range.
1016
+
1017
+ Examples
1018
+ --------
1019
+ import asyncio
1020
+
1021
+ from samsara import AsyncSamsara
1022
+
1023
+ client = AsyncSamsara(
1024
+ token="YOUR_TOKEN",
1025
+ )
1026
+
1027
+
1028
+ async def main() -> None:
1029
+ await client.vehicles.stats.history(
1030
+ start_time="startTime",
1031
+ end_time="endTime",
1032
+ )
1033
+
1034
+
1035
+ asyncio.run(main())
1036
+ """
1037
+ _response = await self._raw_client.history(
1038
+ start_time=start_time,
1039
+ end_time=end_time,
1040
+ after=after,
1041
+ parent_tag_ids=parent_tag_ids,
1042
+ tag_ids=tag_ids,
1043
+ vehicle_ids=vehicle_ids,
1044
+ types=types,
1045
+ decorations=decorations,
1046
+ request_options=request_options,
1047
+ )
1048
+ return _response.data