/**
  * Converts a response from the Divido API to the corresponding PHP object.
  *
  * @param array $resp The response from the Divido API.
  * @param string $apiKey
  * @return Divido_Object|array
  */
 public static function convertToDividoObject($resp, $apiKey)
 {
     $types = array('customer' => 'Divido_Customer', 'list' => 'Divido_List', 'invoice' => 'Divido_Invoice', 'invoiceitem' => 'Divido_InvoiceItem', 'event' => 'Divido_Event', 'transfer' => 'Divido_Transfer', 'plan' => 'Divido_Plan', 'recipient' => 'Divido_Recipient', 'refund' => 'Divido_Refund', 'subscription' => 'Divido_Subscription', 'fee_refund' => 'Divido_ApplicationFeeRefund');
     if (self::isList($resp)) {
         $mapped = array();
         foreach ($resp as $i) {
             array_push($mapped, self::convertToDividoObject($i, $apiKey));
         }
         return $mapped;
     } else {
         if (is_array($resp)) {
             if (isset($resp['object']) && is_string($resp['object']) && isset($types[$resp['object']])) {
                 $class = $types[$resp['object']];
             } else {
                 $class = 'Divido_Object';
             }
             return Divido_Object::scopedConstructFrom($class, $resp, $apiKey);
         } else {
             return $resp;
         }
     }
 }
 /**
  * Refreshes this object using the provided values.
  *
  * @param array $values
  * @param string $apiKey
  * @param boolean $partial Defaults to false.
  */
 public function refreshFrom($values, $apiKey, $partial = false)
 {
     $this->_apiKey = $apiKey;
     // Wipe old state before setting new.  This is useful for e.g. updating a
     // customer, where there is no persistent card parameter.  Mark those values
     // which don't persist as transient
     if ($partial) {
         $removed = new Divido_Util_Set();
     } else {
         $removed = array_diff(array_keys($this->_values), array_keys($values));
     }
     foreach ($removed as $k) {
         if (self::$permanentAttributes->includes($k)) {
             continue;
         }
         unset($this->{$k});
     }
     foreach ($values as $k => $v) {
         if (self::$permanentAttributes->includes($k) && isset($this[$k])) {
             continue;
         }
         if (self::$nestedUpdatableAttributes->includes($k) && is_array($v)) {
             $this->_values[$k] = Divido_Object::scopedConstructFrom('Divido_AttachedObject', $v, $apiKey);
         } else {
             $this->_values[$k] = Divido_Util::convertToDividoObject($v, $apiKey);
         }
         $this->_transientValues->discard($k);
         $this->_unsavedValues->discard($k);
     }
 }