/**
  * Returns TroubleshooterStep attachment.
  *
  * @param int $troubelshooter_step_id TroubleshooterStep identifier.
  * @param int $id TroubleshooterStep attachment identifier.
  * @return kyTroubleshooterAttachment
  */
 public static function get($troubelshooter_step_id, $id)
 {
     return parent::get(array($troubelshooter_step_id, $id));
 }
 /**
  * Returns ticket post.
  *
  * @param int $ticket_id Ticket identifier.
  * @param int $id Ticket post identifier.
  * @return kyTicketPost
  */
 public static function get($ticket_id, $id)
 {
     return parent::get(array($ticket_id, $id));
 }
 /**
  * Returns kbarticle attachment.
  *
  * @param int $kbarticle_id kbarticle identifier.
  * @param int $id kbarticle attachment id identifier.
  * @return kyKnowledgebaseAttachment
  */
 public static function get($kbarticle_id, $id)
 {
     return parent::get(array($kbarticle_id, $id));
 }