/home/techb158/ileadtechnology.com/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api
Edit: /home/techb158/ileadtechnology.com/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/NameValuePair.php (1185B)
name = $name;
return $this;
}
/**
* Key for the name value pair. The value name types should be correlated
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Value for the name value pair.
*
* @param string $value
*
* @return $this
*/
public function setValue($value)
{
$this->value = $value;
return $this;
}
/**
* Value for the name value pair.
*
* @return string
*/
public function getValue()
{
return $this->value;
}
}