/**
  * Returns the 20 most recent direct messages sent to the authenticating user. Includes detailed information about the sender and recipient user. You can request up to 200 direct messages per call, and only the most recent 200 DMs will be available using this endpoint.
  * 
  * Parameters :
  * - since_id
  * - max_id
  * - count (1-200)
  * - include_entities (0|1)
  * - skip_status (0|1)
  *
  * @static 
  */
 public static function getDmsIn($parameters = array())
 {
     return \Thujohn\Twitter\Twitter::getDmsIn($parameters);
 }