This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/lib/PayPal/Api/ShippingAddress.php
Ganesh Hegde 11f91adee4 updated stubs
2013-05-27 11:53:45 +05:30

23 lines
408 B
PHP

<?php
namespace PayPal\Api;
class ShippingAddress extends Address {
/**
* Name of the recipient at this address.
* @param string $recipient_name
*/
public function setRecipientName($recipient_name) {
$this->recipient_name = $recipient_name;
}
/**
* Name of the recipient at this address.
* @return string
*/
public function getRecipientName() {
return $this->recipient_name;
}
}