forked from LiveCarta/PayPal-PHP-SDK
Initial commit
This commit is contained in:
27
lib/PayPal/Api/ShippingAddress.php
Normal file
27
lib/PayPal/Api/ShippingAddress.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?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
|
||||
*/
|
||||
public function getRecipient_name() {
|
||||
return $this->recipient_name;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user