예제 #1
0
 public function toObject($objectToFill = null, $propsToSkip = array())
 {
     parent::toObject($objectToFill, $propsToSkip);
     if ($this->cropDimensions !== null) {
         $this->cropDimensions->toObject($objectToFill);
     }
     if ($this->isDefault === KalturaNullableBoolean::NULL_VALUE) {
         // like null
         $this->isDefault = null;
     }
 }
예제 #2
0
 public function toObject($objectToFill = null, $propsToSkip = array())
 {
     $ret = parent::toObject($objectToFill, $propsToSkip);
     if ($this->cropDimensions !== null) {
         $this->cropDimensions->toObject($ret);
     }
     return $ret;
 }