a7f4de94b2a859c672af09f6d8e95a22b77622e2
[WP-Plugins/glm-member-db.git] /
1 <?php
2 namespace PayPal\Api;
3
4 use PayPal\Common\PPModel;
5
6 class ShippingAddress extends Address {
7         /**
8          * Name of the recipient at this address.
9          * @param string $recipient_name
10          */
11         public function setRecipientName($recipient_name) {
12                 $this->recipient_name = $recipient_name;
13                 return $this;
14         }
15
16         /**
17          * Name of the recipient at this address.
18          * @return string
19          */
20         public function getRecipientName() {
21                 return $this->recipient_name;
22         }
23
24         /**
25          * Name of the recipient at this address.
26          * @param string $recipient_name
27          * @deprecated. Instead use setRecipientName
28          */
29         public function setRecipient_name($recipient_name) {
30                 $this->recipient_name = $recipient_name;
31                 return $this;
32         }
33         /**
34          * Name of the recipient at this address.
35          * @return string
36          * @deprecated. Instead use getRecipientName
37          */
38         public function getRecipient_name() {
39                 return $this->recipient_name;
40         }
41
42 }