4 use PayPal\Common\PPModel;
6 class ShippingAddress extends Address {
8 * Name of the recipient at this address.
9 * @param string $recipient_name
11 public function setRecipientName($recipient_name) {
12 $this->recipient_name = $recipient_name;
17 * Name of the recipient at this address.
20 public function getRecipientName() {
21 return $this->recipient_name;
25 * Name of the recipient at this address.
26 * @param string $recipient_name
27 * @deprecated. Instead use setRecipientName
29 public function setRecipient_name($recipient_name) {
30 $this->recipient_name = $recipient_name;
34 * Name of the recipient at this address.
36 * @deprecated. Instead use getRecipientName
38 public function getRecipient_name() {
39 return $this->recipient_name;