string $source the field name of the class:
string $target the field name to set from the map:
string $value value to set target field to if source field exists:
public function __construct($source, $target, $value) {
$this->source = $source;
$this->target = $target;
$this->value = $value;
}