OEModule\PASAPI\resources\BaseResource::assignProperty PHP Method

assignProperty() public method

public assignProperty ( $model, $model_key, $resource_key )
$model
$model_key
$resource_key
    public function assignProperty($model, $model_key, $resource_key)
    {
        if ($this->partial_record && !property_exists($this, $resource_key)) {
            return;
        }
        $model->{$model_key} = $this->getAssignedProperty($resource_key);
    }