forked from LiveCarta/PayPal-PHP-SDK
28 lines
399 B
PHP
28 lines
399 B
PHP
<?php
|
|
|
|
namespace PayPal\Api;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class ShippingAddress extends Address {
|
|
|
|
|
|
/**
|
|
* Setter for recipient_name
|
|
* @param string $recipient_name
|
|
*/
|
|
public function setRecipient_name($recipient_name) {
|
|
$this->recipient_name = $recipient_name;
|
|
}
|
|
|
|
/**
|
|
* Getter for recipient_name
|
|
* @return string
|
|
*/
|
|
public function getRecipient_name() {
|
|
return $this->recipient_name;
|
|
}
|
|
|
|
|
|
} |