예제 #1
0
 /**
  * Get contacts by id (max 100)
  * @param Array $ids
  * @return Contact_Array
  */
 public function getByIds($ids)
 {
     return $this->connector->getByIds('Contact', $ids);
 }
예제 #2
0
 /**
  * Get invoices by id (max 100)
  * @param Array $ids
  * @return Invoice_Array
  */
 public function getByIds(array $ids)
 {
     return $this->connector->getByIds('Invoice', $ids);
 }