芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/NameValuePair.php
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; } }