sdbusplus: use shorter type aliases

The sdbusplus headers provide shortened aliases for many types.
Switch to using them to provide better code clarity and shorter
lines.  Possible replacements are for:
  * bus_t
  * exception_t
  * manager_t
  * match_t
  * message_t
  * object_t
  * slot_t

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I9541d521bf67882215a4a66dce020e38ac2df065
diff --git a/occ_command.cpp b/occ_command.cpp
index aa5ecb6..39bcae6 100644
--- a/occ_command.cpp
+++ b/occ_command.cpp
@@ -280,7 +280,7 @@
 }
 
 // Called at OCC Status change signal
-void OccCommand::activeStatusEvent(sdbusplus::message::message& msg)
+void OccCommand::activeStatusEvent(sdbusplus::message_t& msg)
 {
     std::string statusInterface;
     std::map<std::string, std::variant<bool>> msgData;