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/Payee.php

60 lines
823 B
PHP

<?php
namespace PayPal\Api;
/**
*
*/
class Payee extends Resource {
/**
* Setter for merchant_id
* @param string $merchant_id
*/
public function setMerchant_id($merchant_id) {
$this->merchant_id = $merchant_id;
}
/**
* Getter for merchant_id
* @return string
*/
public function getMerchant_id() {
return $this->merchant_id;
}
/**
* Setter for email
* @param string $email
*/
public function setEmail($email) {
$this->email = $email;
}
/**
* Getter for email
* @return string
*/
public function getEmail() {
return $this->email;
}
/**
* Setter for phone
* @param string $phone
*/
public function setPhone($phone) {
$this->phone = $phone;
}
/**
* Getter for phone
* @return string
*/
public function getPhone() {
return $this->phone;
}
}