Initial commit

This commit is contained in:
aydiv
2013-03-06 18:42:06 +05:30
commit 69cb3c4dcb
101 changed files with 6222 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
<?php
namespace PayPal\Api;
/**
*
*/
class AmountDetails extends Resource {
/**
* Setter for subtotal
* @param string $subtotal
*/
public function setSubtotal($subtotal) {
$this->subtotal = $subtotal;
}
/**
* Getter for subtotal
*/
public function getSubtotal() {
return $this->subtotal;
}
/**
* Setter for tax
* @param string $tax
*/
public function setTax($tax) {
$this->tax = $tax;
}
/**
* Getter for tax
*/
public function getTax() {
return $this->tax;
}
/**
* Setter for shipping
* @param string $shipping
*/
public function setShipping($shipping) {
$this->shipping = $shipping;
}
/**
* Getter for shipping
*/
public function getShipping() {
return $this->shipping;
}
/**
* Setter for fee
* @param string $fee
*/
public function setFee($fee) {
$this->fee = $fee;
}
/**
* Getter for fee
*/
public function getFee() {
return $this->fee;
}
}