Esempio n. 1
0
 /**
  * Retrieve Command Details.
  *
  * @link https://m2x.att.com/developer/documentation/v2/commands#View-Command-Details
  *
  * @param string $id
  * @return Command
  */
 public function viewCommandDetails($id)
 {
     return Command::get($this, $id);
 }
Esempio n. 2
0
 /**
  * Device view of command details.
  *
  * @link https://m2x.att.com/developer/documentation/v2/commands#Device-s-View-of-Command-Details
  *
  * @param string $id
  * @return Command
  */
 public function command($id)
 {
     return Command::get($this->client, $id);
 }